This repository was archived by the owner on Apr 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +13
-8
lines changed Expand file tree Collapse file tree 7 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ local.properties
6
6
build
7
7
captures
8
8
.externalNativeBuild
9
+ .cxx
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ build.gradle的dependencies中添加依赖:
32
32
``` gradle
33
33
dependencies {
34
34
... ...
35
+ // For specific version number, please refer to app demo
35
36
implementation 'com.bytedance.boost_multidex:boost_multidex:${ARTIFACT_VERSION}'
36
37
}
37
38
```
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ dependencies {
31
31
implementation ' com.android.support:appcompat-v7:28.0.0'
32
32
implementation ' com.android.support.constraint:constraint-layout:1.1.3'
33
33
34
- implementation ' com.bytedance.boost_multidex:boost_multidex:1.0.0 '
34
+ implementation ' com.bytedance.boost_multidex:boost_multidex:1.0.1 '
35
35
36
36
implementation " org.scala-lang:scala-library:2.11.7"
37
37
implementation " com.facebook.fresco:fresco:1.0.1"
Original file line number Diff line number Diff line change @@ -3,21 +3,22 @@ apply plugin: 'com.novoda.bintray-release'
3
3
4
4
android {
5
5
compileSdkVersion 28
6
+ ndkVersion " 16.1.4479499"
6
7
7
8
defaultConfig {
8
9
minSdkVersion 14
9
10
targetSdkVersion 28
10
- versionCode 1
11
+ // versionCode 1
11
12
versionName ARTIFACT_VERSION
12
13
13
14
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
14
15
15
- consumerProguardFiles ' proguard-rules.pro'
16
+ consumerProguardFiles " proguard-rules.pro"
16
17
17
18
externalNativeBuild {
18
19
cmake {
19
20
cppFlags " -std=c++14" , " -fno-exceptions" , " -O2"
20
- abiFilters ' armeabi' , ' armeabi-v7a'
21
+ abiFilters " armeabi" , " armeabi-v7a" , " x86 "
21
22
}
22
23
}
23
24
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ org.gradle.jvmargs=-Xmx1536m
15
15
ORG_NAME =galaxy-leo-open-source
16
16
GROUP_ID =com.bytedance.boost_multidex
17
17
ARTIFACT_ID =boost_multidex
18
- ARTIFACT_VERSION =1.0.0
18
+ ARTIFACT_VERSION =1.0.1
19
19
WEBSITE =https://github.com/bytedance/BoostMultiDex
20
20
DESC =boost multidex
21
- # ./gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false
21
+ # ./gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ buildscript {
8
8
mavenCentral()
9
9
}
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:3.2.1'
11
+ classpath ' com.android.tools.build:gradle:3.5.0'
12
+ // classpath 'com.android.tools.build:gradle:3.2.1'
12
13
classpath ' com.novoda:bintray-release:0.9.2'
13
14
// NOTE: Do not place your application dependencies here; they belong
14
15
// in the individual module build.gradle files
Original file line number Diff line number Diff line change
1
+ # Mon Jun 01 11:05:38 CST 2020
1
2
distributionBase =GRADLE_USER_HOME
2
3
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.6-all.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
You can’t perform that action at this time.
0 commit comments