Commit 87dcd26f authored by jianglx's avatar jianglx

修改了debug模式下签名问题,修改成debug模式下也使用正式签名,方便支付这边的调试

parent 1c92b49d
......@@ -8,7 +8,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 30
versionName "3.2"
versionName "3.0"
multiDexEnabled true
//新版Gradle 是 implementation 为了兼容compile,写上这句话
......@@ -26,10 +26,10 @@ android {
storePassword rootProject.ext.sign_xinxin.storePassword
}
debug {
keyAlias rootProject.ext.sign_xinxin_debug.keyAlias
keyPassword rootProject.ext.sign_xinxin_debug.keyPassword
storeFile file(rootProject.ext.sign_xinxin_debug.storeDebugFile)
storePassword rootProject.ext.sign_xinxin_debug.storePassword
keyAlias 'xinxin'
keyPassword '123456'
storeFile file('E:/git/rvapp/keystore/xinxin.jks')
storePassword '123456'
}
}
buildTypes {
......@@ -37,18 +37,21 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
signingConfig signingConfigs.debug
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation fileTree(include: ['*.jar'], dir: 'libs')
api 'com.jakewharton:butterknife:9.0.0-rc1'
annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0-rc1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
// api project(path: ':RvTravel')
// api project(path: ':RvTravel')
api project(path: ':module_home')
api project(path: ':module_mine')
api project(path: ':module_camp')
api project(path: ':module_tourism')
}
......@@ -174,10 +174,6 @@
<activity
android:name="com.rv.home.rv.module.ui.login.PwdLoginActivity"
android:screenOrientation="portrait" />
<activity
android:name="com.rv.home.rv.module.ui.main.HomeActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait" />
<activity
android:name="com.rv.home.rv.module.ui.main.home.CarRentalListActivity"
android:screenOrientation="portrait" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment