Skip to content

Commit

Permalink
Fix issue qii#270: Cannot invoke method minus() on null object
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkHorsePXF committed Oct 8, 2015
1 parent 90cc081 commit 659f34e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
maven { url 'http://download.crashlytics.com/maven' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.13.2'
classpath 'com.android.tools.build:gradle:1.1.1'
classpath 'com.crashlytics.tools.gradle:crashlytics-gradle:1.+'
}
}
Expand Down Expand Up @@ -33,7 +33,7 @@ android {
applicationId "org.qii.weiciyuan"
minSdkVersion 17
targetSdkVersion 21
versionCode - 1
versionCode 1
versionName null
}

Expand Down Expand Up @@ -106,15 +106,15 @@ android {
resValue "string", "weiciyuanOfficalWeiboName",
"org.qii.weiciyuan" + getApplicationIdSuffix() + ".mention://@四次元App"
debuggable true
runProguard false
minifyEnabled false
signingConfig signingConfigs.debug
}
release {
resValue "string", "applicationId", "org.qii.weiciyuan"
resValue "string", "weiciyuanOfficalWeiboName",
"org.qii.weiciyuan" + ".mention://@四次元App"
debuggable false
runProguard false
minifyEnabled false
signingConfig signingConfigs.release
}

Expand Down

0 comments on commit 659f34e

Please sign in to comment.