AIRA-android/app/build.gradle

63 lines
1.8 KiB
Groovy
Raw Permalink Normal View History

2021-01-26 19:45:18 +01:00
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
2022-05-14 20:34:19 +02:00
compileSdkVersion 32
buildToolsVersion "32.0.0"
2021-01-26 19:45:18 +01:00
defaultConfig {
applicationId "sushi.hardcore.aira"
minSdkVersion 19
2022-05-14 20:34:19 +02:00
targetSdkVersion 32
versionCode 3
versionName "0.1.1"
2021-01-26 19:45:18 +01:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2021-06-15 20:09:04 +02:00
ndk {
2022-05-14 20:34:19 +02:00
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
2021-06-15 20:09:04 +02:00
}
2021-01-26 19:45:18 +01:00
}
2021-05-09 20:41:13 +02:00
applicationVariants.all { variant ->
variant.resValue "string", "versionName", variant.versionName
}
2021-01-26 19:45:18 +01:00
buildFeatures {
viewBinding true
}
buildTypes {
release {
2022-05-14 20:34:19 +02:00
minifyEnabled false // curve25519-android doesn't seem to support minification
2021-01-26 19:45:18 +01:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
2022-05-14 20:34:19 +02:00
namespace 'sushi.hardcore.aira'
2021-01-26 19:45:18 +01:00
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2022-05-14 20:34:19 +02:00
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation "androidx.fragment:fragment-ktx:1.4.1"
implementation "androidx.preference:preference-ktx:1.2.0"
implementation 'com.google.android.material:material:1.6.0'
2021-01-26 19:45:18 +01:00
implementation 'net.i2p.crypto:eddsa:0.3.0'
implementation "org.whispersystems:curve25519-android:0.5.0"
2022-05-14 20:34:19 +02:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
2021-01-26 19:45:18 +01:00
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
2021-05-27 20:15:03 +02:00
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
2021-09-02 20:45:53 +02:00
}