Skip to content

Commit

Permalink
Merge pull request #4 from ShivamNagpal/upgrade/version
Browse files Browse the repository at this point in the history
Change TargetSdkVersion and versionCode
  • Loading branch information
ShivamNagpal authored Sep 19, 2020
2 parents cd4787e + d9026a6 commit 8c58532
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ apply plugin: 'com.google.firebase.crashlytics'

android {
compileSdkVersion 30
buildToolsVersion '30.0.0'
buildToolsVersion '30.0.2'
defaultConfig {
applicationId "com.nagpal.shivam.vtucslab"
minSdkVersion 19
targetSdkVersion 30
versionCode 6
versionName "6.0"
versionCode 7
versionName "6.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand All @@ -26,25 +26,25 @@ android {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')

implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'com.google.android.material:material:1.2.1'

// GSON
implementation 'com.google.code.gson:gson:2.8.5'

// Firebase SDK
implementation('com.google.firebase:firebase-core:17.4.3') {
implementation('com.google.firebase:firebase-core:17.5.0') {
exclude module: 'support-v4'
}
implementation('com.google.firebase:firebase-messaging:20.2.1') {
implementation('com.google.firebase:firebase-messaging:20.2.4') {
exclude module: 'support-v4'
}
implementation 'com.google.firebase:firebase-crashlytics:17.1.0'
implementation 'com.google.firebase:firebase-crashlytics:17.2.1'

testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}

apply plugin: 'com.google.gms.google-services'
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'com.google.gms:google-services:4.3.3'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.2.0'
// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit 8c58532

Please sign in to comment.