Compare commits

..

No commits in common. "2f054c6877bc7f0449e97f03b4c5224e1986524c" and "3dcd8079f3e055425c3ac10793e5610772b2063d" have entirely different histories.

3 changed files with 13 additions and 36 deletions

View file

@ -1,17 +0,0 @@
## OhThatsA: Privacy policy
Welcome to the OhThatsA app for Android!
This is an open source Android app developed by me. The source code is available on my Github and Gitea repositories under the MIT license; the app is also available on Google Play.
I know how irritating it is when apps collect your data without your knowledge.
I have not programmed this app to collect any personally identifiable information. All data created by you is stored on your device only, and can be simply erased by clearing the app's data or uninstalling it.
If you find any security vulnerability that has been inadvertently caused by me, or have any question regarding how the app protects your privacy, please send me an email and I will surely try to fix it/help you.
Yours sincerely,
David
david@broodjeaap.net
https://github.com/broodjeaap/ohthatsa
https://gitea.broodjeaap.net/broodjeaap/ohthatsa

View file

@ -6,9 +6,9 @@ plugins {
}
android {
namespace = "net.broodjeaap.ohthatsa"
compileSdk = 36
ndkVersion = "27.0.12077973"
namespace = "net.broodjeaap.ohthatsa.ohthatsa"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
@ -21,26 +21,20 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "net.broodjeaap.ohthatsa"
applicationId = "net.broodjeaap.ohthatsa.ohthatsa"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = 33
targetSdk = 36
versionCode = 3
versionName = "2.1.0"
minSdk = flutter.minSdkVersion
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
}
signingConfigs {
create("release") {
keyAlias = "alias"
keyPassword = "password"
storeFile = file("path/to/keystore.jks")
storePassword = "password"
}
}
buildTypes {
buildTypes {
release {
signingConfig = signingConfigs.getByName("release")
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.getByName("debug")
}
}
}

View file

@ -1,4 +1,4 @@
package net.broodjeaap.ohthatsa
package net.broodjeaap.ohthatsa.ohthatsa
import io.flutter.embedding.android.FlutterActivity