-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69f0450
commit 9886a93
Showing
16 changed files
with
4,811 additions
and
4,811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,112 +1,112 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 30 | ||
buildToolsVersion '30.0.2' | ||
defaultConfig { | ||
applicationId "io.virtualapp.sandvxposed" | ||
minSdkVersion 21 | ||
targetSdkVersion 28 | ||
versionCode 90 | ||
versionName "1.2.5.1.3.1.7.8" | ||
multiDexEnabled true | ||
android { | ||
defaultConfig { | ||
ndk { | ||
abiFilters "armeabi-v7a", "x86" | ||
// abiFilters "arm64-v8a" | ||
} | ||
} | ||
} | ||
} | ||
|
||
sourceSets { | ||
main { | ||
jniLibs.srcDirs = ['libs'] | ||
res.srcDirs = [ | ||
'src/main/res2', | ||
|
||
'src/main/res' | ||
] | ||
} | ||
} | ||
|
||
buildTypes { | ||
debug { | ||
minifyEnabled true | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
release { | ||
minifyEnabled true | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
} | ||
|
||
android { | ||
lintOptions { | ||
checkReleaseBuilds false | ||
// Or, if you prefer, you can continue to check for errors in release builds, | ||
// but continue the build even when errors are found: | ||
abortOnError false | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(include: ['*.jar'], dir: 'libs') | ||
api project(':lib') | ||
// Update to AndroidX on 2019/06/07 | ||
//Android Lib | ||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4' | ||
implementation 'androidx.multidex:multidex:2.0.1' | ||
implementation 'com.melnykov:floatingactionbutton:1.3.0' | ||
implementation 'androidx.percentlayout:percentlayout:1.0.0' | ||
implementation 'com.google.android.material:material:1.2.1' | ||
implementation 'androidx.cardview:cardview:1.0.0' | ||
//Promise Support | ||
implementation 'org.jdeferred:jdeferred-android-aar:1.2.4' | ||
// ThirdParty | ||
implementation 'com.jonathanfinerty.once:once:1.3.0' | ||
implementation 'com.flurry.android:analytics:6.9.2' | ||
implementation 'com.kyleduo.switchbutton:library:1.4.6' | ||
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | ||
implementation 'androidx.vectordrawable:vectordrawable:1.1.0' | ||
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' | ||
implementation 'androidx.recyclerview:recyclerview:1.1.0' | ||
// annotationProcessor 'com.trend.lazyinject:compiler:3.4.0-beta' | ||
|
||
// ZLoadingView | ||
api 'com.zyao89:zloading:1.2.0' | ||
|
||
// Alert View | ||
implementation 'com.bigkoo:alertview:1.0.3' | ||
|
||
implementation 'androidx.appcompat:appcompat:1.2.0' | ||
|
||
implementation 'com.gauravk.bubblenavigation:bubblenavigation:1.0.7' | ||
} | ||
|
||
android { | ||
defaultConfig { | ||
vectorDrawables.useSupportLibrary = true | ||
|
||
manifestPlaceholders = [ | ||
//AWV24BW39WRE 属于应用"VirtualApp"独有的 Android AppKey, 用于配置SDK | ||
MTA_APPKEY : "AWV24BW39WRE", | ||
//标注应用推广渠道用以区分新用户来源,可填写如应用宝,豌豆荚等 | ||
MTA_CHANNEL: "VApp" | ||
] | ||
} | ||
} | ||
|
||
android { | ||
defaultConfig { | ||
vectorDrawables.useSupportLibrary = true | ||
} | ||
} | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 30 | ||
buildToolsVersion '30.0.2' | ||
defaultConfig { | ||
applicationId "io.virtualapp.sandvxposed" | ||
minSdkVersion 21 | ||
targetSdkVersion 28 | ||
versionCode 90 | ||
versionName "1.2.5.1.3.1.7.8" | ||
multiDexEnabled true | ||
android { | ||
defaultConfig { | ||
ndk { | ||
abiFilters "armeabi-v7a", "x86" | ||
// abiFilters "arm64-v8a" | ||
} | ||
} | ||
} | ||
} | ||
|
||
sourceSets { | ||
main { | ||
jniLibs.srcDirs = ['libs'] | ||
res.srcDirs = [ | ||
'src/main/res2', | ||
|
||
'src/main/res' | ||
] | ||
} | ||
} | ||
|
||
buildTypes { | ||
debug { | ||
minifyEnabled true | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
release { | ||
minifyEnabled true | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
} | ||
|
||
android { | ||
lintOptions { | ||
checkReleaseBuilds false | ||
// Or, if you prefer, you can continue to check for errors in release builds, | ||
// but continue the build even when errors are found: | ||
abortOnError false | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(include: ['*.jar'], dir: 'libs') | ||
api project(':lib') | ||
// Update to AndroidX on 2019/06/07 | ||
//Android Lib | ||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4' | ||
implementation 'androidx.multidex:multidex:2.0.1' | ||
implementation 'com.melnykov:floatingactionbutton:1.3.0' | ||
implementation 'androidx.percentlayout:percentlayout:1.0.0' | ||
implementation 'com.google.android.material:material:1.2.1' | ||
implementation 'androidx.cardview:cardview:1.0.0' | ||
//Promise Support | ||
implementation 'org.jdeferred:jdeferred-android-aar:1.2.4' | ||
// ThirdParty | ||
implementation 'com.jonathanfinerty.once:once:1.3.0' | ||
implementation 'com.flurry.android:analytics:6.9.2' | ||
implementation 'com.kyleduo.switchbutton:library:1.4.6' | ||
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | ||
implementation 'androidx.vectordrawable:vectordrawable:1.1.0' | ||
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' | ||
implementation 'androidx.recyclerview:recyclerview:1.1.0' | ||
// annotationProcessor 'com.trend.lazyinject:compiler:3.4.0-beta' | ||
|
||
// ZLoadingView | ||
api 'com.zyao89:zloading:1.2.0' | ||
|
||
// Alert View | ||
implementation 'com.bigkoo:alertview:1.0.3' | ||
|
||
implementation 'androidx.appcompat:appcompat:1.2.0' | ||
|
||
implementation 'com.gauravk.bubblenavigation:bubblenavigation:1.0.7' | ||
} | ||
|
||
android { | ||
defaultConfig { | ||
vectorDrawables.useSupportLibrary = true | ||
|
||
manifestPlaceholders = [ | ||
//AWV24BW39WRE 属于应用"VirtualApp"独有的 Android AppKey, 用于配置SDK | ||
MTA_APPKEY : "AWV24BW39WRE", | ||
//标注应用推广渠道用以区分新用户来源,可填写如应用宝,豌豆荚等 | ||
MTA_CHANNEL: "VApp" | ||
] | ||
} | ||
} | ||
|
||
android { | ||
defaultConfig { | ||
vectorDrawables.useSupportLibrary = true | ||
} | ||
} |
Oops, something went wrong.