initial flutter android build

This commit is contained in:
Zach Russell 2026-03-20 12:15:10 -06:00
commit 91516c2f20
5 changed files with 96 additions and 16 deletions

View file

@ -39,6 +39,11 @@ android {
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
// do we want to update.. eventually?
jvmTarget = "17"
}
defaultConfig {
applicationId = "nexus.federated.Nexus"
minSdk = 29
@ -50,7 +55,8 @@ android {
signingConfigs {
release {
keyAlias "key"
storeFile keystoreProperties['path'] ? file(keystoreProperties['path']) : file(System.getenv("KEYSTORE_PATH"))
def storePath = keystoreProperties['path'] ?: System.getenv("KEYSTORE_PATH")
storeFile storePath ? file(storePath) : null
keyPassword keystoreProperties['password'] ?: System.getenv("KEYSTORE_PASSWORD")
storePassword keystoreProperties['password'] ?: System.getenv("KEYSTORE_PASSWORD")
}

View file

@ -10,7 +10,7 @@
android:label="Nexus"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/nexus_round"
android:roundIcon="@mipmap/ic_launcher"
android:allowBackup="false"
android:fullBackupContent="false">
<activity