mirror of
https://github.com/Matte23/circolapp.git
synced 2025-12-06 07:29:10 +00:00
62 lines
2.3 KiB
Groovy
62 lines
2.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'com.jaredsburrows.license'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.2"
|
|
defaultConfig {
|
|
applicationId "net.underdesk.circolapp"
|
|
minSdkVersion 21
|
|
targetSdkVersion 30
|
|
versionCode 3
|
|
versionName "0.1.1"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
androidExtensions {
|
|
experimental = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'androidx.core:core-ktx:1.3.1'
|
|
implementation 'com.google.android.material:material:1.3.0-alpha02'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
|
implementation 'androidx.navigation:navigation-fragment:2.3.0'
|
|
implementation 'androidx.navigation:navigation-ui:2.3.0'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.0'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.3.0'
|
|
implementation "androidx.work:work-runtime-ktx:2.4.0"
|
|
implementation "androidx.room:room-runtime:2.2.5"
|
|
kapt "androidx.room:room-compiler:2.2.5"
|
|
implementation "androidx.room:room-ktx:2.2.5"
|
|
implementation 'androidx.preference:preference:1.1.1'
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
testImplementation 'junit:junit:4.13'
|
|
androidTestImplementation 'androidx.test:runner:1.3.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:4.8.1'
|
|
implementation 'com.squareup.moshi:moshi:1.9.3'
|
|
kapt 'com.squareup.moshi:moshi-kotlin-codegen:1.9.3'
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
|
}
|