Merge branch 'main' of https://github.com/vodemn/m3_lightmeter into feature/ML-42

This commit is contained in:
Vadim 2023-02-24 21:33:02 +03:00
commit b160ff6ad0
3 changed files with 40 additions and 3 deletions

View file

@ -46,7 +46,15 @@ jobs:
- name: Build appbundle
run: flutter build appbundle --release --flavor prod --dart-define cameraPreviewAspectRatio=2/3 -t lib/main_prod.dart
- uses: actions/upload-artifact@v3
- name: Upload app bundle to artifacts
uses: actions/upload-artifact@v3
with:
name: m3_lightmeter.apk
name: m3_lightmeter_bundle
path: build/app/outputs/bundle/prodRelease/app-prod-release.aab
- name: Upload native debug symbols to artifacts
uses: actions/upload-artifact@v3
with:
name: m3_lightmeter_native_debug_symbols
path: |
build/app/intermediates/merged_native_libs/prodRelease/out/lib/

27
PRIVACY_POLICY.md Normal file
View file

@ -0,0 +1,27 @@
**Privacy Policy**
I, Vodemn, built the Material Lightmeter app as a Free app. This app is provided at no cost and is intended for use as is.
**Information Collection and Use**
When using this app no personal data is collected. All settings such as theme, calibration values and other preferences are stored only on your device and never sent over the Internet.
**Log Data**
I want to inform you that whenever you use Lightmeter app, in a case of an error in the app I collect data and information (through third-party products) on your phone called Log Data. This Log Data may include information such as your device name, operating system version, the configuration of the app, the time and date of your use of the App, and other statistics.
**Links to Other Sites**
This app contains links to other sites. If you click on a third-party link, you will be directed to that site. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services.
* [GitHub](https://docs.github.com/en/site-policy/privacy-policies/github-privacy-statement)
**Changes to This Privacy Policy**
I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page.
This policy is effective as of 2023-02-24
**Contact Us**
If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact.vodemn@gmail.com.

View file

@ -51,7 +51,9 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
/// legacy material-lightmeter ap stopped updating after 60022
/// 7xxxx means that it is a new app
versionCode 70000 + flutterVersionCode.toInteger()
versionName flutterVersionName
}