Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
Play Publisher Gradle plugin bump to 2.0.0 and refactoring fixes (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
Langston Smith authored Aug 13, 2019
1 parent 28cfcaa commit 35db350
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Mapbox welcomes participation and contributions from everyone.

## 8.2.1-1 - August 9, 2019

* Added CircleCI command to create google services json file in Release job #1166

## 8.2.1 - August 7, 2019

* Added example of cache management methods usage #[1139](https://github.com/mapbox/mapbox-android-demo/pull/1139)
Expand Down
20 changes: 8 additions & 12 deletions MapboxAndroidDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,7 @@ android {
targetCompatibility 1.8
}

playAccountConfigs {
defaultAccountConfig {
serviceAccountEmail = 'mapbox-android-demo-publish@android-gl-native.iam.gserviceaccount.com'
jsonFile = file("$project.rootDir/android-gl-native-6d21dd280e7b.json")
}
}


defaultConfig {
applicationId "com.mapbox.mapboxandroiddemo"
Expand All @@ -39,7 +34,6 @@ android {

buildConfigField "int", "MIN_SDK_VERSION", "$minSdkVersion.apiLevel"

playAccountConfig = playAccountConfigs.defaultAccountConfig
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
Expand All @@ -48,7 +42,7 @@ android {
}
}

flavorDimensions "default"
flavorDimensions 'default'

productFlavors {
global {
Expand Down Expand Up @@ -103,10 +97,12 @@ android {
disable 'MissingTranslation', 'ExtraTranslation'
}

play {
track = 'alpha'
untrackOld = true
}
}

play {
track = 'alpha'
resolutionStrategy = 'auto'
serviceAccountCredentials = file("$project.rootDir/android-gl-native-6d21dd280e7b.json")
}

kotlinter {
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ ext {
checkstyle : '8.2',
firebasePerformance : '1.2.1',
gradle : '3.4.2',
gradlePlayPublisher : '1.2.2',
gradlePlayPublisher : '2.0.0',
kotlin : '1.3.41',
dependencyGraph : '0.3.0',
grgit : '2.3.0',
Expand Down

0 comments on commit 35db350

Please sign in to comment.