Aktualisiere und räume gradle-Dateien auf

master
Niko Diamadis 4 years ago
parent 74b53d7630
commit 5ac6f8270e
Signed by: niko
GPG Key ID: BE53B0B17B1B142E

@ -16,16 +16,14 @@ android {
keyPassword properties.getProperty("signing.key.password") keyPassword properties.getProperty("signing.key.password")
} }
} }
compileSdkVersion 31 compileSdk 31
buildToolsVersion "30.0.3"
defaultConfig { defaultConfig {
applicationId "com.cyb3rko.techniklogger" applicationId "com.cyb3rko.techniklogger"
minSdkVersion 19 minSdk 19
targetSdkVersion 31 targetSdk 31
versionCode 11 versionCode 11
versionName "2.0.0" versionName "2.0.0"
multiDexEnabled true
} }
buildTypes { buildTypes {
@ -36,7 +34,7 @@ android {
release { release {
signingConfig signingConfigs.signingconf signingConfig signingConfigs.signingconf
minifyEnabled true minifyEnabled true
shrinkResources false shrinkResources true
manifestPlaceholders = [crashlyticsCollectionEnabled:"true"] manifestPlaceholders = [crashlyticsCollectionEnabled:"true"]
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
} }
@ -51,9 +49,6 @@ android {
buildFeatures { buildFeatures {
viewBinding true viewBinding true
} }
packagingOptions {
pickFirst'META-INF/library_release.kotlin_module'
}
} }
dependencies { dependencies {
@ -61,7 +56,6 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.4.2' implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.core:core-ktx:1.8.0' implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.4.2' implementation 'androidx.navigation:navigation-fragment-ktx:2.4.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.4.2' implementation 'androidx.navigation:navigation-ui-ktx:2.4.2'
implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.recyclerview:recyclerview:1.2.1'

@ -1,6 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.about_libraries_version = "8.3.0"
repositories { repositories {
google() google()
jcenter() jcenter()

@ -6,7 +6,7 @@
# http://www.gradle.org/docs/current/userguide/build_environment.html # http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process. # Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings. # The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode. # When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit # This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
@ -15,7 +15,11 @@ org.gradle.jvmargs=-Xmx2048m
# Android operating system, and which are packaged with your app"s APK # Android operating system, and which are packaged with your app"s APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn # https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Automatically convert third-party libraries to use AndroidX # Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete": # Enables namespacing of each library's R class so that its R class includes only the
kotlin.code.style=official # resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

@ -1,6 +1,6 @@
#Fri Nov 06 23:24:33 CET 2020 #Fri Nov 06 23:24:33 CET 2020
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

Loading…
Cancel
Save