Skip to content

Commit

Permalink
update app dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Ortega committed Oct 8, 2019
1 parent 3fa14f0 commit d1e5c3d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion '25.0.0'
compileSdkVersion 28
buildToolsVersion '25.0.3'
defaultConfig {
applicationId "wendu.jsbdemo"
minSdkVersion 11
targetSdkVersion 23
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -23,14 +23,14 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile project(path: ':dsbridge')
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.squareup.okhttp3:okhttp:3.3.0'
testCompile 'junit:junit:4.12'
implementation project(path: ':dsbridge')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.squareup.okhttp3:okhttp:3.3.0'
testImplementation 'junit:junit:4.12'
}


Expand Down

0 comments on commit d1e5c3d

Please sign in to comment.