Skip to content

Commit

Permalink
* [Android] Support arm64 by upgrading NDK to 16 and Gradle Plugin fo…
Browse files Browse the repository at this point in the history
…r Android to 3.2.1 (apache#2561)
  • Loading branch information
Darin726 authored and YorkShen committed Jun 18, 2019
1 parent 5bafd00 commit 2f13cb5
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions build.gradle
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'com.android.library'
android {

compileSdkVersion project.compileSdkVersion
buildToolsVersion project.buildToolsVersion
// buildToolsVersion project.buildToolsVersion
resourcePrefix "weexcomm"

defaultConfig {
Expand Down Expand Up @@ -41,32 +41,32 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':weex_sdk')
compile "com.android.support:support-v4:${project.supportLibVersion}"
compile "com.android.support:appcompat-v7:${project.supportLibVersion}"
// compile project(':weex_sdk')
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.facebook.fresco:fresco:0.10.0'
compile 'com.taobao.android.weex_inspection:protocol:1.1.4.1'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':weex_sdk')
implementation "com.android.support:support-v4:${project.supportLibVersion}"
implementation "com.android.support:appcompat-v7:${project.supportLibVersion}"
// implementation project(':weex_sdk')
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.facebook.fresco:fresco:0.10.0'
implementation 'com.taobao.android.weex_inspection:protocol:1.1.4.1'

provided 'com.taobao.android:weex_analyzer:0.1.0.5'
provided 'com.squareup.okhttp:okhttp:2.3.0'
provided 'com.squareup.okhttp:okhttp-ws:2.3.0'
provided "com.alibaba:fastjson:${project.fastjsonLibVersion}"
compileOnly 'com.taobao.android:weex_analyzer:0.1.0.5'
compileOnly 'com.squareup.okhttp:okhttp:2.3.0'
compileOnly 'com.squareup.okhttp:okhttp-ws:2.3.0'
compileOnly "com.alibaba:fastjson:${project.fastjsonLibVersion}"

testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-core:1.3'
testCompile 'org.javassist:javassist:3.20.0-GA'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.objenesis:objenesis:2.1'
testCompile 'org.powermock:powermock-core:1.6.4'
testCompile 'org.powermock:powermock-api-mockito:1.6.4'
testCompile 'org.powermock:powermock-module-junit4-common:1.6.4'
testCompile 'org.powermock:powermock-module-junit4:1.6.4'
testCompile 'org.powermock:powermock-module-junit4-legacy:1.6.4'
testCompile 'org.powermock:powermock-module-testng:1.6.4'
testCompile 'org.robolectric:robolectric:3.0-rc3'
testImplementation 'junit:junit:4.12'
testImplementation 'org.hamcrest:hamcrest-core:1.3'
testImplementation 'org.javassist:javassist:3.20.0-GA'
testImplementation 'org.mockito:mockito-core:1.10.19'
testImplementation 'org.objenesis:objenesis:2.1'
testImplementation 'org.powermock:powermock-core:1.6.4'
testImplementation 'org.powermock:powermock-api-mockito:1.6.4'
testImplementation 'org.powermock:powermock-module-junit4-common:1.6.4'
testImplementation 'org.powermock:powermock-module-junit4:1.6.4'
testImplementation 'org.powermock:powermock-module-junit4-legacy:1.6.4'
testImplementation 'org.powermock:powermock-module-testng:1.6.4'
testImplementation 'org.robolectric:robolectric:3.0-rc3'
}

if(file('../license/LICENSE').exists()){
Expand Down

0 comments on commit 2f13cb5

Please sign in to comment.