2018-08-18 07:04:31 +02:00
|
|
|
|
2024-03-19 01:45:04 +01:00
|
|
|
plugins {
|
|
|
|
id "com.android.application"
|
|
|
|
id "kotlin-android"
|
|
|
|
id "kotlin-android-extensions"
|
|
|
|
}
|
2018-08-18 07:04:31 +02:00
|
|
|
|
|
|
|
android {
|
2024-03-26 01:53:01 +01:00
|
|
|
compileSdkVersion 32
|
2018-08-18 07:04:31 +02:00
|
|
|
defaultConfig {
|
2019-02-23 22:14:56 +01:00
|
|
|
applicationId "org.libre.agosto.p2play"
|
2024-03-19 01:45:04 +01:00
|
|
|
minSdkVersion 26
|
2024-03-26 01:53:01 +01:00
|
|
|
targetSdkVersion 32
|
|
|
|
versionCode 9
|
|
|
|
versionName "0.6.0"
|
2018-08-18 07:04:31 +02:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-09-04 05:17:31 +02:00
|
|
|
compileOptions {
|
2024-03-19 01:45:04 +01:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2018-09-04 05:17:31 +02:00
|
|
|
}
|
2019-01-30 19:40:36 +01:00
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2024-03-26 01:53:01 +01:00
|
|
|
namespace 'org.libre.agosto.p2play'
|
2018-08-18 07:04:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-09-04 05:17:31 +02:00
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2019-10-18 03:41:32 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2018-08-18 07:04:31 +02:00
|
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
2024-03-21 04:04:16 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2024-03-26 01:53:01 +01:00
|
|
|
implementation 'com.google.android.material:material:1.6.0'
|
2018-08-18 07:04:31 +02:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2024-03-21 04:04:16 +01:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.5.2'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
|
2018-08-18 07:04:31 +02:00
|
|
|
}
|