Skip to content

Commit

Permalink
Bump version to 3.0.2 (3020) (quran#1476)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedre authored Oct 29, 2020
1 parent e307bea commit 9e00b38
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ build/
crashlytics-build.properties
com_crashlytics_export_strings.xml
extras
app/google-services.json
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ before_script:
- adb shell input keyevent 82 &

script:
- ./gradlew clean testMadaniRelease feature:audio:testDebug -PdisableCrashlytics
- ./gradlew clean connectedMadaniDebugAndroidTest -PdisableCrashlytics
- ./gradlew clean testMadaniRelease feature:audio:testDebug -PdisableCrashlytics -PdisableFirebase
- ./gradlew clean connectedMadaniDebugAndroidTest -PdisableCrashlytics -PdisableFirebase

branches:
only:
Expand Down
8 changes: 6 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ apply plugin: 'kotlin-android-extensions'
apply plugin: 'net.ltgt.errorprone'
apply plugin: 'kotlin-kapt'
apply plugin: 'com.google.firebase.crashlytics'
if (getGradle().getStartParameter().getTaskRequests().toString().contains("Release") &&
!project.hasProperty("disableFirebase")) {
apply plugin: 'com.google.gms.google-services'
}

android {
compileSdkVersion deps.android.build.compileSdkVersion
Expand All @@ -17,8 +21,8 @@ android {
defaultConfig {
minSdkVersion deps.android.build.minSdkVersion
targetSdkVersion deps.android.build.targetSdkVersion
versionCode 3010
versionName "3.0.1"
versionCode 3020
versionName "3.0.2"
testInstrumentationRunner "com.quran.labs.androidquran.core.QuranTestRunner"
multiDexEnabled true
}
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ buildscript {
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "net.ltgt.gradle:gradle-errorprone-plugin:1.2.1"
classpath 'com.google.gms:google-services:4.3.4'
}
}

Expand Down

0 comments on commit 9e00b38

Please sign in to comment.