plugins { id 'com.android.application' id 'kotlin-android' } android { compileSdkVersion 30 buildToolsVersion "30.0.3" defaultConfig { applicationId "sushi.hardcore.aira" minSdkVersion 19 targetSdkVersion 30 versionCode 2 versionName "0.1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" ndk { abiFilters "x86", "armeabi-v7a", "arm64-v8a" } } applicationVariants.all { variant -> variant.resValue "string", "versionName", variant.versionName } buildFeatures { viewBinding true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation 'androidx.core:core-ktx:1.6.0' implementation 'androidx.appcompat:appcompat:1.3.1' implementation "androidx.fragment:fragment-ktx:1.3.6" implementation "androidx.preference:preference-ktx:1.1.1" implementation 'com.google.android.material:material:1.4.0' implementation 'net.i2p.crypto:eddsa:0.3.0' implementation "org.whispersystems:curve25519-android:0.5.0" implementation 'androidx.constraintlayout:constraintlayout:2.1.0' implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" implementation 'com.github.bumptech.glide:glide:4.12.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0' }