kotovalexarian
/
android
Archived
1
0
Fork 0
This repository has been archived on 2023-08-15. You can view files and clone it, but cannot push or open issues or pull requests.
android/app/build.gradle

51 lines
1.4 KiB
Groovy
Raw Normal View History

2021-08-14 00:30:21 +00:00
plugins {
id 'com.android.application'
id 'kotlin-android'
2021-08-15 22:15:07 +00:00
id 'androidx.navigation.safeargs'
2021-08-14 00:30:21 +00:00
}
android {
compileSdk 31
defaultConfig {
applicationId "com.causa_arcana"
minSdk 21
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
2021-08-14 00:30:21 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2021-08-14 00:30:21 +00:00
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
2021-08-15 22:15:07 +00:00
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
2021-08-14 00:30:21 +00:00
implementation 'androidx.appcompat:appcompat:1.3.1'
2021-10-09 01:45:58 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
2021-08-15 21:24:37 +00:00
implementation 'androidx.core:core-ktx:1.6.0'
2021-08-15 20:52:10 +00:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2021-08-15 21:24:37 +00:00
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'com.google.android.material:material:1.4.0'
testImplementation 'junit:junit:4.13.2'
2021-08-14 00:30:21 +00:00
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}