buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:7.0.4' } } apply plugin: 'com.android.application' // TODO: fix weird test build failure android { compileSdkVersion 32 buildToolsVersion '32.1.0-rc1' // 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 { minSdkVersion 21 targetSdkVersion 32 versionName "1.0" versionCode 30 applicationId 'com.android.inputmethod.latin' testApplicationId 'com.android.inputmethod.latin.tests' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = false signingConfig signingConfigs.debug } signingConfigs { debug { storeFile file("java/shared.keystore") } } buildTypes { debug { minifyEnabled false } release { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.flags' } } 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' } } ndkVersion '25.0.8221429 rc2' } repositories { maven { url "../../../prebuilts/fullsdk-darwin/extras/android/m2repository" } maven { url "../../../prebuilts/fullsdk-linux/extras/android/m2repository" } mavenCentral() google() jcenter() } dependencies { implementation 'androidx.legacy:legacy-support-v4:+' implementation 'androidx.core:core:1.7.0' implementation 'com.google.code.findbugs:jsr305:3.0.2' testImplementation 'junit:junit:4.12' androidTestImplementation "org.mockito:mockito-core:1.9.5" androidTestImplementation 'com.google.dexmaker:dexmaker:1.2' androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.2' 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' }