Skip to content

Commit

Permalink
Updated advanced-build-version and multitype, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
drakeet committed Oct 14, 2017
1 parent dab165c commit 3a9cfb1
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 32 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta2'
classpath 'org.moallemi.gradle.advanced-build-version:gradle-plugin:1.5.3'
classpath 'com.android.tools.build:gradle:3.0.0-beta7'
classpath 'org.moallemi.gradle.advanced-build-version:gradle-plugin:1.6.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Aug 22 10:44:41 CST 2017
#Sat Oct 14 13:04:20 CST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-rc-1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ include ':transformer'

// project(':multitype').projectDir = new File(rootProject.projectDir, '../MultiType/library')

gradle.ext.supportLibraryVersion = '25.4.0'
gradle.ext.supportLibraryVersion = '26.1.0'
gradle.ext.ageraVersion = '1.3.0'
gradle.ext.leakCanaryVersion = '1.5'
gradle.ext.crashwoodpeckerVersion = '1.3.2'
gradle.ext.buildToolsVersion = '26.0.1'
gradle.ext.buildToolsVersion = '26.0.2'

gradle.allprojects {
afterEvaluate { project ->
Expand Down
4 changes: 2 additions & 2 deletions timemachine-store/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.library'
apply plugin: 'jacoco'

android {
compileSdkVersion 25
compileSdkVersion 26
buildToolsVersion gradle.buildToolsVersion
resourcePrefix "time_machine"
defaultPublishConfig "debug"

defaultConfig {
minSdkVersion 14
targetSdkVersion 25
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
Expand Down
4 changes: 2 additions & 2 deletions timemachine-widget/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.library'
apply plugin: 'jacoco'

android {
compileSdkVersion 25
compileSdkVersion 26
buildToolsVersion gradle.buildToolsVersion
resourcePrefix "time_machine"
defaultPublishConfig "debug"

defaultConfig {
minSdkVersion 14
targetSdkVersion 25
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
Expand Down
8 changes: 4 additions & 4 deletions timemachine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.library'
apply plugin: 'jacoco'

android {
compileSdkVersion 25
compileSdkVersion 26
buildToolsVersion gradle.buildToolsVersion
// resourcePrefix "time_machine"
defaultPublishConfig "debug"

defaultConfig {
minSdkVersion 14
targetSdkVersion 25
targetSdkVersion 26
versionCode 20
versionName "1.0"
}
Expand All @@ -26,6 +26,6 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.android.support:appcompat-v7:$gradle.supportLibraryVersion"
implementation "com.android.support:recyclerview-v7:$gradle.supportLibraryVersion"
implementation 'com.google.code.gson:gson:2.8.1'
implementation 'me.drakeet.multitype:multitype:3.3.0'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'me.drakeet.multitype:multitype:3.3.2'
}
32 changes: 16 additions & 16 deletions transformer/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import org.moallemi.gradle.internal.VersionCodeType

apply plugin: 'com.android.application'
// apply plugin: 'org.moallemi.advanced-build-version'
apply plugin: 'org.moallemi.advanced-build-version'
apply plugin: 'jacoco'

/*
advancedVersioning {
nameOptions {
versionPatch versionCode
Expand All @@ -16,22 +17,21 @@ advancedVersioning {
nameFormat 'Transformer-${buildType}-${versionName}'
}
}
*/

// def appVersionName = advancedVersioning.versionName
// def appVersionCode = advancedVersioning.versionCode
def appVersionName = advancedVersioning.versionName
def appVersionCode = advancedVersioning.versionCode
def keyStore = file('transformer.keystore')

android {
compileSdkVersion 25
compileSdkVersion 26
buildToolsVersion gradle.buildToolsVersion

defaultConfig {
applicationId "me.drakeet.transformer"
minSdkVersion 14
targetSdkVersion 25
versionCode 527
versionName 'x.xx'
targetSdkVersion 26
versionCode appVersionCode
versionName appVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down Expand Up @@ -100,10 +100,10 @@ dependencies {
implementation "com.google.android.agera:net:$gradle.ageraVersion"
implementation "com.google.android.agera:content:$gradle.ageraVersion"
implementation 'me.drakeet.agera:bus:1.0.0'
implementation 'com.google.code.gson:gson:2.8.1'
implementation 'com.google.code.gson:gson:2.8.2'

debugImplementation "com.squareup.leakcanary:leakcanary-android:$gradle.leakCanaryVersion"
debugImplementation ("me.drakeet.library:crashwoodpecker:$gradle.crashwoodpeckerVersion", {
debugImplementation("me.drakeet.library:crashwoodpecker:$gradle.crashwoodpeckerVersion", {
exclude group: 'com.android.support'
})

Expand All @@ -113,10 +113,10 @@ dependencies {
androidTestImplementation "com.android.support:appcompat-v7:$gradle.supportLibraryVersion"
androidTestImplementation "com.android.support:design:$gradle.supportLibraryVersion"

implementation 'com.android.support.test.espresso:espresso-idling-resource:2.2.2'
implementation 'com.android.support.test.espresso:espresso-idling-resource:3.0.1'

androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:2.2.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestImplementation 'com.android.support.test:runner:0.5'
androidTestImplementation 'com.android.support.test:rules:0.5'
androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test:rules:1.0.1'
}
4 changes: 2 additions & 2 deletions transformer/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sat May 06 15:05:28 CST 2017
AI_VERSION_CODE=527
#Sat Oct 14 13:13:55 CST 2017
AI_VERSION_CODE=528

0 comments on commit 3a9cfb1

Please sign in to comment.