Skip to content

Commit

Permalink
Merge pull request #429 from Goooler/master
Browse files Browse the repository at this point in the history
Minor updates
  • Loading branch information
ikarus23 authored Aug 18, 2023
2 parents 2f61bb7 + cef1ccc commit 617aa63
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 27 deletions.
15 changes: 8 additions & 7 deletions Mifare Classic Tool/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'com.android.application'
id 'com.android.application' version '8.1.0'
id 'org.jetbrains.kotlin.android' version '1.9.0'
}

android {
Expand All @@ -21,13 +22,13 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
tasks.withType(JavaCompile).configureEach {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}

dependencies {
implementation "androidx.core:core:1.9.0"
implementation "androidx.preference:preference:1.2.0"
}
implementation "androidx.core:core:1.10.1"
implementation "androidx.preference:preference:1.2.1"
}
16 changes: 0 additions & 16 deletions Mifare Classic Tool/build.gradle

This file was deleted.

4 changes: 0 additions & 4 deletions Mifare Classic Tool/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
android.defaults.buildfeatures.buildconfig=true
android.enableJetifier=false
android.injected.testOnly=false
android.nonFinalResIds=false
android.nonTransitiveRClass=false
android.useAndroidX=true
org.gradle.caching=true
org.gradle.configureondemand=true
Expand Down
15 changes: 15 additions & 0 deletions Mifare Classic Tool/settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
pluginManagement {
repositories {
google()
gradlePluginPortal()
}
}

dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
google()
mavenCentral()
}
}

include ':app'

0 comments on commit 617aa63

Please sign in to comment.