2023-08-14 10:48:12 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application' version '8.0.2'
|
|
|
|
id 'org.jetbrains.kotlin.android' version '1.8.20'
|
|
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.20'
|
2023-08-27 17:08:44 +01:00
|
|
|
id 'com.android.library' version '8.0.2' apply false
|
2018-07-26 02:08:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2023-07-06 19:57:49 +01:00
|
|
|
namespace 'org.futo.inputmethod.latin'
|
|
|
|
|
|
|
|
compileSdk 33
|
2018-07-26 02:08:28 +01:00
|
|
|
|
|
|
|
// Required if using classes in android.test.runner
|
|
|
|
useLibrary 'android.test.runner'
|
|
|
|
|
|
|
|
// Required if using classes in android.test.base
|
|
|
|
useLibrary 'android.test.base'
|
|
|
|
|
|
|
|
// Required if using classes in android.test.mock
|
|
|
|
useLibrary 'android.test.mock'
|
|
|
|
|
|
|
|
defaultConfig {
|
2023-07-06 19:57:49 +01:00
|
|
|
minSdk 24
|
|
|
|
targetSdk 33
|
2018-07-26 02:08:28 +01:00
|
|
|
versionName "1.0"
|
|
|
|
|
2023-07-06 19:57:49 +01:00
|
|
|
applicationId 'org.futo.inputmethod.latin'
|
|
|
|
testApplicationId 'org.futo.inputmethod.latin.tests'
|
2018-12-14 03:06:42 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-07-26 02:08:28 +01:00
|
|
|
vectorDrawables.useSupportLibrary = false
|
2018-07-26 02:08:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
debug {
|
|
|
|
storeFile file("java/shared.keystore")
|
|
|
|
}
|
2018-07-26 02:08:28 +01:00
|
|
|
}
|
|
|
|
|
2023-08-11 21:03:20 +01:00
|
|
|
final def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def releaseSigning = signingConfigs.debug
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
final def keystoreProperties = new Properties()
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
releaseSigning = signingConfigs.create("release") {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile rootProject.file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
project.logger.lifecycle('keystore.properties not found, APK may not be signed')
|
|
|
|
}
|
|
|
|
|
2023-08-31 20:45:11 +01:00
|
|
|
|
|
|
|
final def crashReportPropertiesFile = rootProject.file("crashreporting.properties")
|
|
|
|
final def crashReportProperties = new Properties()
|
|
|
|
if (crashReportPropertiesFile.exists()) {
|
|
|
|
crashReportProperties.load(new FileInputStream(crashReportPropertiesFile))
|
|
|
|
} else {
|
|
|
|
project.logger.lifecycle('crashreporting.properties not found, crash reporting will be disabled')
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-26 02:08:28 +01:00
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
minifyEnabled false
|
2023-08-11 21:03:20 +01:00
|
|
|
signingConfig signingConfigs.debug
|
2018-07-26 02:08:28 +01:00
|
|
|
}
|
|
|
|
release {
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.flags'
|
2023-08-11 21:03:20 +01:00
|
|
|
signingConfig releaseSigning
|
2018-07-26 02:08:28 +01:00
|
|
|
}
|
2023-08-31 20:45:11 +01:00
|
|
|
|
|
|
|
buildTypes.each {
|
|
|
|
if (crashReportPropertiesFile.exists()) {
|
|
|
|
it.buildConfigField "boolean", "ENABLE_ACRA", crashReportProperties['acraEnabled']
|
|
|
|
it.buildConfigField "String", "ACRA_URL", crashReportProperties['acraUrl']
|
|
|
|
it.buildConfigField "String", "ACRA_USER", crashReportProperties['acraUser']
|
|
|
|
it.buildConfigField "String", "ACRA_PASSWORD", crashReportProperties['acraPassword']
|
|
|
|
} else {
|
|
|
|
it.buildConfigField "boolean", "ENABLE_ACRA", "false"
|
|
|
|
it.buildConfigField "String", "ACRA_URL", ""
|
|
|
|
it.buildConfigField "String", "ACRA_USER", ""
|
|
|
|
it.buildConfigField "String", "ACRA_PASSWORD", ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
buildConfig = true
|
2018-07-26 02:08:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
|
|
|
flavorDimensions "default"
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
res.srcDirs = ['java/res']
|
|
|
|
java.srcDirs = ['common/src', 'java/src']
|
|
|
|
manifest.srcFile 'java/AndroidManifest.xml'
|
|
|
|
}
|
|
|
|
|
|
|
|
androidTest {
|
|
|
|
res.srcDirs = ['tests/res']
|
|
|
|
java.srcDirs = ['tests/src']
|
|
|
|
manifest.srcFile "tests/AndroidManifest.xml"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
}
|
|
|
|
|
|
|
|
aaptOptions {
|
|
|
|
noCompress 'dict'
|
|
|
|
}
|
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
path 'native/jni/Android.mk'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-14 10:48:12 +01:00
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
|
|
compose true
|
|
|
|
viewBinding true
|
|
|
|
mlModelBinding true
|
|
|
|
}
|
|
|
|
composeOptions {
|
|
|
|
kotlinCompilerExtensionVersion '1.4.6'
|
|
|
|
}
|
2018-07-26 02:08:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-08-14 10:48:12 +01:00
|
|
|
implementation 'androidx.core:core-ktx:1.10.1'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime:2.6.1'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.6.1'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1'
|
|
|
|
implementation 'androidx.activity:activity-compose:1.7.2'
|
|
|
|
implementation platform('androidx.compose:compose-bom:2022.10.00')
|
|
|
|
implementation 'androidx.compose.ui:ui'
|
|
|
|
implementation 'androidx.compose.ui:ui-graphics'
|
|
|
|
implementation 'androidx.compose.ui:ui-tooling-preview'
|
|
|
|
implementation 'androidx.compose.material3:material3'
|
|
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
implementation 'androidx.navigation:navigation-compose:2.6.0'
|
|
|
|
|
2018-07-26 02:08:28 +01:00
|
|
|
implementation 'com.google.code.findbugs:jsr305:3.0.2'
|
|
|
|
|
2023-08-22 18:37:51 +01:00
|
|
|
implementation 'androidx.datastore:datastore-preferences:1.0.0'
|
2023-08-26 18:04:56 +01:00
|
|
|
implementation 'androidx.autofill:autofill:1.1.0'
|
2023-08-22 18:37:51 +01:00
|
|
|
|
2023-08-31 20:45:11 +01:00
|
|
|
implementation 'ch.acra:acra-http:5.11.1'
|
|
|
|
implementation 'ch.acra:acra-dialog:5.11.1'
|
|
|
|
|
2023-09-04 15:30:18 +01:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
|
2023-11-14 09:43:36 +00:00
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1'
|
2023-09-04 15:30:18 +01:00
|
|
|
|
2023-08-27 17:08:44 +01:00
|
|
|
implementation project(":voiceinput-shared")
|
|
|
|
|
2023-08-15 17:48:27 +01:00
|
|
|
debugImplementation 'androidx.compose.ui:ui-tooling'
|
|
|
|
debugImplementation 'androidx.compose.ui:ui-test-manifest'
|
|
|
|
|
2023-07-06 19:57:49 +01:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2018-07-26 02:08:28 +01:00
|
|
|
androidTestImplementation "org.mockito:mockito-core:1.9.5"
|
|
|
|
androidTestImplementation 'com.google.dexmaker:dexmaker:1.2'
|
|
|
|
androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.2'
|
2023-07-06 19:57:49 +01:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test:rules:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
|
|
|
|
androidTestImplementation 'androidx.annotation:annotation:1.0.0'
|
2018-07-26 02:08:28 +01:00
|
|
|
}
|