You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.6 KiB
73 lines
2.6 KiB
apply plugin: 'com.android.application' |
|
apply plugin: 'kotlin-android' |
|
apply plugin: 'kotlin-android-extensions' |
|
|
|
android { |
|
signingConfigs { |
|
} |
|
compileSdkVersion 29 |
|
defaultConfig { |
|
applicationId "org.mosad.seil0.projectlaogai" |
|
minSdkVersion 23 |
|
targetSdkVersion 29 |
|
versionCode 15 |
|
versionName "0.5.90" |
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
|
resValue "string", "build_time", buildTime() |
|
setProperty("archivesBaseName", "projectlaogai-$versionName") |
|
} |
|
|
|
buildTypes { |
|
release { |
|
minifyEnabled false |
|
shrinkResources false |
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
|
} |
|
} |
|
|
|
compileOptions { |
|
sourceCompatibility JavaVersion.VERSION_1_8 |
|
targetCompatibility JavaVersion.VERSION_1_8 |
|
} |
|
|
|
sourceSets { |
|
main { |
|
res.srcDirs = |
|
[ |
|
'src/main/res/layouts/activities', |
|
'src/main/res/layouts/dialogs', |
|
'src/main/res/layouts/fragments', |
|
'src/main/res/layouts', |
|
'src/main/res' |
|
] |
|
} |
|
} |
|
} |
|
|
|
dependencies { |
|
implementation fileTree(include: ['*.jar'], dir: 'libs') |
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" |
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.8' |
|
implementation 'androidx.core:core:1.3.1' |
|
implementation 'androidx.appcompat:appcompat:1.2.0' |
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0' |
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1' |
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' |
|
implementation 'com.google.android.material:material:1.2.0' |
|
implementation 'com.google.code.gson:gson:2.8.6' |
|
implementation 'com.afollestad:aesthetic:1.0.0-beta05' |
|
implementation 'com.afollestad.material-dialogs:core:3.3.0' |
|
implementation 'com.afollestad.material-dialogs:color:3.3.0' |
|
implementation 'com.afollestad.material-dialogs:bottomsheets:3.3.0' |
|
implementation 'de.psdev.licensesdialog:licensesdialog:2.1.0' |
|
|
|
implementation 'org.apache.commons:commons-lang3:3.10' |
|
|
|
testImplementation 'junit:junit:4.13' |
|
androidTestImplementation 'androidx.test:runner:1.2.0' |
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' |
|
} |
|
|
|
static def buildTime() { |
|
return new Date().format("yyyy-MM-dd", TimeZone.getTimeZone("UTC")) |
|
} |