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")
}
}
compileSdkVersion 31
buildToolsVersion "30.0.3"
compileSdk 31
defaultConfig {
applicationId "com.cyb3rko.techniklogger"
minSdkVersion 19
targetSdkVersion 31
minSdk 19
targetSdk 31
versionCode 11
versionName "2.0.0"
multiDexEnabled true
}
buildTypes {
@ -36,7 +34,7 @@ android {
release {
signingConfig signingConfigs.signingconf
minifyEnabled true
shrinkResources false
shrinkResources true
manifestPlaceholders = [crashlyticsCollectionEnabled:"true"]
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
@ -51,9 +49,6 @@ android {
buildFeatures {
viewBinding true
}
packagingOptions {
pickFirst'META-INF/library_release.kotlin_module'
}
}
dependencies {
@ -61,7 +56,6 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'androidx.cardview:cardview:1.0.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-ui-ktx:2.4.2'
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.
buildscript {
ext.about_libraries_version = "8.3.0"
repositories {
google()
jcenter()

@ -6,7 +6,7 @@
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# 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.
# 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
@ -15,7 +15,11 @@ org.gradle.jvmargs=-Xmx2048m
# Android operating system, and which are packaged with your app"s APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Enables namespacing of each library's R class so that its R class includes only the
# 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
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
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

Loading…
Cancel
Save