Skip to content

Commit

Permalink
Fixed publishing for release sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
semsudin-tafilovic committed Nov 23, 2023
1 parent 21cb55c commit 3bd1daf
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
26 changes: 13 additions & 13 deletions android-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,19 @@ android {
}


packagingOptions {
exclude("META-INF/DEPENDENCIES")
exclude("META-INF/LICENSE")
exclude("META-INF/LICENSE.txt")
exclude("META-INF/LICENSE.md")
exclude("META-INF/LICENSE-notice.md")
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/*.kotlin_module")
}
// packagingOptions {
// exclude("META-INF/DEPENDENCIES")
// exclude("META-INF/LICENSE")
// exclude("META-INF/LICENSE.txt")
// exclude("META-INF/LICENSE.md")
// exclude("META-INF/LICENSE-notice.md")
// 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/*.kotlin_module")
// }
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion android-sdk/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#
# LIBRARY_VERSION=5.1.4.3 (hotfixes are included on this variable)
#
LIBRARY_VERSION=5.1.7
LIBRARY_VERSION=5.1.7.1
BINTRAY_REPO=webtrekk-android-sdk
BINRTAY_NAME=webtrekk-android-sdk
PUBLISHED_GROUP_ID=com.mapp.sdk
Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ android {
}

dependencies {
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation('com.google.android.material:material:1.9.0')
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$versions.kotlinVersion"
Expand All @@ -124,8 +124,8 @@ dependencies {

implementation('com.mapp.sdk:mapp-android:6.0.20.1')

implementation(project(':android-sdk'))
//implementation ("com.mapp.sdk:intelligence-android:5.1.6.1")
//implementation(project(':android-sdk'))
implementation ("com.mapp.sdk:intelligence-android:5.1.7.1")

//debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CampaignActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_campaign);
setContentView(R.layout.activity_campaign)

button1.setOnClickListener {

Expand Down

0 comments on commit 3bd1daf

Please sign in to comment.