Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Commit

Permalink
Changed gradle build to use the jitpackio version of the core library
Browse files Browse the repository at this point in the history
  • Loading branch information
maxieds committed Mar 22, 2020
1 parent 7b4fd00 commit 5d1279e
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
applicationId "com.maxieds.ParklinkMCTLibraryDemo"
minSdkVersion 25
targetSdkVersion 28
versionCode 18
versionName "1.1.8"
versionCode 19
versionName "1.1.9"

buildConfigField "String", "BUILD_TIMESTAMP", "\"" + getDateTimestamp() + "\""
buildConfigField "String", "GIT_COMMIT_HASH", "\"" + getGitCommitHash() + "\""
Expand All @@ -46,17 +46,32 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}

packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
exclude 'META-INF/androidx*'
exclude 'META-INF/android*'
}
}

}

repositories {
jcenter()
maven { url 'https://jitpack.io' }
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation project(':MifareClassicToolLibrary')
//implementation project(':MifareClassicToolLibrary')
implementation 'com.github.maxieds:ParklinkMifareClassicToolLibrary:1.1.8'
implementation 'com.nononsenseapps:filepicker:4.1.0'
}

0 comments on commit 5d1279e

Please sign in to comment.