2020-05-12 14:52:56 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
|
|
|
android {
|
2024-07-02 21:21:51 +02:00
|
|
|
compileSdkVersion 33
|
|
|
|
buildToolsVersion "30.0.3"
|
2020-05-12 14:52:56 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2024-07-02 21:21:51 +02:00
|
|
|
applicationId "de.jrpie.android.launcher"
|
2024-07-06 00:57:51 +02:00
|
|
|
minSdkVersion 21
|
2024-07-06 03:12:57 +02:00
|
|
|
targetSdkVersion 35
|
2024-07-02 21:21:51 +02:00
|
|
|
versionCode 13
|
|
|
|
versionName "j-alpha-0.1"
|
2020-05-12 14:52:56 +02:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2020-05-20 05:40:54 +02:00
|
|
|
minifyEnabled true
|
2020-05-12 14:52:56 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
implementation 'androidx.core:core-ktx:1.2.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2020-05-21 08:59:21 +02:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2020-05-12 14:52:56 +02:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
|
|
implementation 'androidx.gridlayout:gridlayout:1.0.0'
|
2024-07-06 03:12:57 +02:00
|
|
|
implementation 'androidx.palette:palette-ktx:1.0.0'
|
2020-05-12 14:52:56 +02:00
|
|
|
}
|