Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RvApp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lify
RvApp
Commits
d14d088d
Commit
d14d088d
authored
Aug 07, 2019
by
jianglx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加多渠道打包
parent
3ae56a57
Changes
39
Hide whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
523 additions
and
76 deletions
+523
-76
build.gradle
Animset/build.gradle
+14
-4
build.gradle
Banner/build.gradle
+16
-4
build.gradle
MyFrame/build.gradle
+19
-7
build.gradle
OkGo/build.gradle
+13
-0
build.gradle
Resource/build.gradle
+18
-4
build.gradle
RvClient/build.gradle
+31
-10
strings.xml
RvClient/src/dev/res/values/strings.xml
+3
-0
strings.xml
RvClient/src/pro/res/values/strings.xml
+0
-0
strings.xml
RvClient/src/sit/res/values/strings.xml
+3
-0
build.gradle
RvFrame/build.gradle
+18
-5
RvFrameConfig.java
RvFrame/src/dev/java/com/frame/rv/config/RvFrameConfig.java
+31
-0
RvFrameConfig.java
RvFrame/src/pro/java/com/frame/rv/config/RvFrameConfig.java
+0
-1
RvFrameConfig.java
RvFrame/src/sit/java/com/frame/rv/config/RvFrameConfig.java
+34
-0
build.gradle
RvTravel/build.gradle
+21
-8
build.gradle
RvWrapper/build.gradle
+12
-1
build.gradle
SweetDialog/build.gradle
+16
-4
build.gradle
Utils/build.gradle
+17
-4
build.gradle
component_control/build.gradle
+13
-1
build.gradle
component_dialog/build.gradle
+11
-1
build.gradle
component_resource/build.gradle
+11
-1
build.gradle
component_utils/build.gradle
+13
-1
build.gradle
module_camp/build.gradle
+12
-2
build.gradle
module_discovery/build.gradle
+11
-1
build.gradle
module_home/build.gradle
+10
-1
build.gradle
module_mine/build.gradle
+10
-1
build.gradle
module_tourism/build.gradle
+10
-1
build.gradle
plugin_calendar/build.gradle
+12
-1
build.gradle
plugin_carpurchase/build.gradle
+13
-1
build.gradle
plugin_coupon/build.gradle
+13
-1
build.gradle
plugin_imcamera/build.gradle
+13
-1
build.gradle
plugin_login/build.gradle
+13
-1
build.gradle
plugin_member/build.gradle
+13
-1
build.gradle
plugin_points/build.gradle
+12
-1
build.gradle
plugin_search/build.gradle
+12
-1
build.gradle
plugin_share/build.gradle
+12
-1
RvWebView.java
plugin_share/src/main/java/com/rv/share/view/RvWebView.java
+1
-1
build.gradle
plugin_time/build.gradle
+14
-1
build.gradle
plugin_version/build.gradle
+15
-2
build.gradle
plugin_wallet/build.gradle
+13
-1
No files found.
Animset/build.gradle
View file @
d14d088d
...
...
@@ -10,6 +10,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
includeCompileClasspath
=
true
...
...
@@ -21,10 +22,19 @@ android {
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
}
...
...
Banner/build.gradle
View file @
d14d088d
...
...
@@ -10,6 +10,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
includeCompileClasspath
=
true
...
...
@@ -23,10 +24,21 @@ android {
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
}
...
...
MyFrame/build.gradle
View file @
d14d088d
...
...
@@ -8,6 +8,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
//testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
//新版Gradle 是 implementation 为了兼容compile,写上这句话
javaCompileOptions
{
...
...
@@ -21,13 +22,24 @@ android {
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
// 所有Module应该保持一致,要么加上,要么去掉
//aar包引入
//compile(name:'camerascan-1.0', ext:'aar')
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
// 所有Module应该保持一致,要么加上,要么去掉
//aar包引入
//compile(name:'camerascan-1.0', ext:'aar')
}
}
}
...
...
OkGo/build.gradle
View file @
d14d088d
...
...
@@ -10,6 +10,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
includeCompileClasspath
=
true
...
...
@@ -27,6 +28,18 @@ android {
}
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
Resource/build.gradle
View file @
d14d088d
...
...
@@ -10,6 +10,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
includeCompileClasspath
=
true
...
...
@@ -21,10 +22,23 @@ android {
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
}
...
...
RvClient/build.gradle
View file @
d14d088d
apply
plugin:
'com.android.application'
android
{
String
appId
=
"com.xxfc.rv"
compileSdkVersion
rootProject
.
ext
.
compileSdkVersion
buildToolsVersion
rootProject
.
ext
.
buildToolsVersion
defaultConfig
{
applicationId
"com.xxfc.rv"
minSdkVersion
rootProject
.
ext
.
minSdkVersion
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
flavorDimensions
"default"
versionCode
135
versionName
"1.3.5"
multiDexEnabled
true
...
...
@@ -28,32 +28,34 @@ android {
}
}
signingConfigs
{
release
{
keyAlias
rootProject
.
ext
.
sign_xinxin
.
keyAlias
keyPassword
rootProject
.
ext
.
sign_xinxin
.
keyPassword
storeFile
file
(
rootProject
.
ext
.
sign_xinxin
.
storeReleaseFile
)
storePassword
rootProject
.
ext
.
sign_xinxin
.
storePassword
}
debug
{
keyAlias
'xinxin'
keyPassword
'123456'
storeFile
file
(
'../keystore/xinxin.jks'
)
storePassword
'123456'
}
release
{
keyAlias
'xinxin'
keyPassword
'123456'
storeFile
file
(
'../keystore/xinxin.jks'
)
storePassword
'123456'
}
}
buildTypes
{
release
{
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
signingConfig
signingConfigs
.
debug
}
debug
{
debuggable
true
signingConfig
signingConfigs
.
debug
signingConfig
signingConfigs
.
release
}
android
.
applicationVariants
.
all
{
variant
->
variant
.
outputs
.
all
{
//MedicalClient_{time}_v1.0.1_{build号}.apk
if
(
variant
.
buildType
.
name
==
'release'
)
{
def
productVersion
=
"RV"
+
releaseTime
()
+
"V"
+
defaultConfig
.
versionName
+
"Release"
+
".apk"
;
outputFileName
=
productVersion
...
...
@@ -62,7 +64,26 @@ android {
}
}
productFlavors
{
//开发环境
dev
{
// applicationId = appId + ".dev"
applicationId
=
appId
}
sit
{
// applicationId = appId + ".sit"
applicationId
=
appId
}
pro
{
applicationId
=
appId
}
}
}
//打包的时间
static
def
releaseTime
()
{
return
new
Date
().
format
(
"yyyyMMddHHss"
,
TimeZone
.
getTimeZone
(
"GMT+8"
))
...
...
RvClient/src/dev/res/values/strings.xml
0 → 100644
View file @
d14d088d
<resources>
<string
name=
"app_name"
>
滴房车(开发)
</string>
</resources>
RvClient/src/
main
/res/values/strings.xml
→
RvClient/src/
pro
/res/values/strings.xml
View file @
d14d088d
File moved
RvClient/src/sit/res/values/strings.xml
0 → 100644
View file @
d14d088d
<resources>
<string
name=
"app_name"
>
滴房车(测试)
</string>
</resources>
RvFrame/build.gradle
View file @
d14d088d
...
...
@@ -10,7 +10,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
...
...
@@ -19,15 +19,28 @@ android {
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
buildTypes
{
release
{
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
sourceSets
{
...
...
RvFrame/src/dev/java/com/frame/rv/config/RvFrameConfig.java
0 → 100644
View file @
d14d088d
package
com
.
frame
.
rv
.
config
;
/**
* Created :Auser
* Date: 2019/5/9.
* Desc:
*/
public
interface
RvFrameConfig
extends
RvFrameConstant
{
// String HOST = "https://xxtest.upyuns.com";
// String HOST = "http://10.1.37.192:8765";
// String HOST = "http://10.1.37.245:10000";
String
HOST
=
"https://dev.dfangche.com"
;
String
HOST_H5_DETAIL
=
HOST
;
String
ADMIN_POST
=
HOST
+
"/api/admin/"
;
String
AUTH_POST
=
HOST
+
"/api/auth/"
;
String
VEHICLE_POST
=
HOST
+
"/vehicle/"
;
//租车
String
VEHICLE_CAR_POST
=
HOST
+
"/vehicle/"
;
//租车
String
VEHICLE_UPLOAD
=
HOST
+
"/api/universal/"
;
String
VEHICLE_ORDER
=
HOST
+
"/api/order/"
;
String
VEHICLE_TOURUSER
=
HOST
+
"/api/tour/"
;
String
VEHICLE_CAMPLIST
=
HOST
+
"/api/campsite/"
;
String
APP_ID
=
"wx9ed5e51251cf7c61"
;
//微信注册ID
class
RvFrameInfo
{
public
static
int
TYPE_LOGIN
=
0
;
//登录类型0、token过期、1、租车
}
}
RvFrame/src/
main
/java/com/frame/rv/config/RvFrameConfig.java
→
RvFrame/src/
pro
/java/com/frame/rv/config/RvFrameConfig.java
View file @
d14d088d
...
...
@@ -15,7 +15,6 @@ public interface RvFrameConfig extends RvFrameConstant {
// String HOST = "https://api.dfangche.com";
String
HOST
=
"https://mgmt.dfangche.com"
;
String
HOST_H5_DETAIL
=
"https://mgmt.dfangche.com"
;
// String HOST_H5_DETAIL = "https://dev.dfangche.com";
String
ADMIN_POST
=
HOST
+
"/api/admin/"
;
String
AUTH_POST
=
HOST
+
"/api/auth/"
;
String
VEHICLE_POST
=
HOST
+
"/vehicle/"
;
//租车
...
...
RvFrame/src/sit/java/com/frame/rv/config/RvFrameConfig.java
0 → 100644
View file @
d14d088d
package
com
.
frame
.
rv
.
config
;
/**
* Created :Auser
* Date: 2019/5/9.
* Desc:
*/
public
interface
RvFrameConfig
extends
RvFrameConstant
{
String
HOST
=
"https://xxtest.upyuns.com"
;
// String HOST = "http://10.1.37.192:8765";
// String HOST = "http://10.1.37.245:10000";
// String HOST = "https://dev.dfangche.com";
// String HOST = "https://api.dfangche.com";
// String HOST = "https://mgmt.dfangche.com";
// String HOST_H5_DETAIL = "https://mgmt.dfangche.com";
String
HOST_H5_DETAIL
=
HOST
;
String
ADMIN_POST
=
HOST
+
"/api/admin/"
;
String
AUTH_POST
=
HOST
+
"/api/auth/"
;
String
VEHICLE_POST
=
HOST
+
"/vehicle/"
;
//租车
String
VEHICLE_CAR_POST
=
HOST
+
"/vehicle/"
;
//租车
String
VEHICLE_UPLOAD
=
HOST
+
"/api/universal/"
;
String
VEHICLE_ORDER
=
HOST
+
"/api/order/"
;
String
VEHICLE_TOURUSER
=
HOST
+
"/api/tour/"
;
String
VEHICLE_CAMPLIST
=
HOST
+
"/api/campsite/"
;
String
APP_ID
=
"wx9ed5e51251cf7c61"
;
//微信注册ID
class
RvFrameInfo
{
public
static
int
TYPE_LOGIN
=
0
;
//登录类型0、token过期、1、租车
}
}
RvTravel/build.gradle
View file @
d14d088d
...
...
@@ -12,7 +12,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
includeCompileClasspath
=
true
...
...
@@ -33,13 +33,26 @@ android {
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
// 所有Module应该保持一致,要么加上,要么去掉
//aar包引入
//compile(name:'camerascan-1.0', ext:'aar')
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
// 所有Module应该保持一致,要么加上,要么去掉
//aar包引入
//compile(name:'camerascan-1.0', ext:'aar')
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
...
...
RvWrapper/build.gradle
View file @
d14d088d
...
...
@@ -8,7 +8,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
}
buildTypes
{
...
...
@@ -28,6 +28,17 @@ android {
jniLibs
.
srcDir
'libs'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
SweetDialog/build.gradle
View file @
d14d088d
...
...
@@ -9,6 +9,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
includeCompileClasspath
=
true
...
...
@@ -20,13 +21,24 @@ android {
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
}
...
...
Utils/build.gradle
View file @
d14d088d
...
...
@@ -10,6 +10,7 @@ android {
versionCode
1
versionName
"1.0"
multiDexEnabled
true
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
includeCompileClasspath
=
true
...
...
@@ -29,10 +30,22 @@ android {
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
repositories
{
flatDir
{
dirs
'libs'
//this way we can find the .aar file in libs folder
}
}
}
...
...
component_control/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
28
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -21,6 +21,18 @@ android {
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
component_dialog/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
28
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -21,6 +21,16 @@ android {
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
component_resource/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
28
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -20,7 +20,17 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
component_utils/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
28
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -21,6 +21,18 @@ android {
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
module_camp/build.gradle
View file @
d14d088d
...
...
@@ -20,7 +20,7 @@ android {
}
}
flavorDimensions
"default"
}
buildTypes
{
...
...
@@ -29,6 +29,16 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
@@ -36,7 +46,7 @@ dependencies {
api
'com.jakewharton:butterknife:9.0.0-rc1'
implementation
'com.android.support.constraint:constraint-layout:1.1.3'
annotationProcessor
'com.jakewharton:butterknife-compiler:9.0.0-rc1'
annotationProcessor
'com.alibaba:arouter-compiler:1.1.4'
annotationProcessor
'com.alibaba:arouter-compiler:1.1.4'
api
project
(
':RvWrapper'
)
api
project
(
':component_control'
)
api
project
(
':component_resource'
)
...
...
module_discovery/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
28
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
{
...
...
@@ -34,6 +34,16 @@ android {
sourceCompatibility
=
'1.8'
targetCompatibility
=
'1.8'
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
module_home/build.gradle
View file @
d14d088d
...
...
@@ -10,7 +10,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
annotationProcessorOptions
{
...
...
@@ -28,6 +28,15 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
module_mine/build.gradle
View file @
d14d088d
...
...
@@ -10,7 +10,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
...
...
@@ -28,6 +28,15 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
module_tourism/build.gradle
View file @
d14d088d
...
...
@@ -10,7 +10,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
javaCompileOptions
{
...
...
@@ -29,6 +29,15 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_calendar/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
{
...
...
@@ -29,6 +29,17 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_carpurchase/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
{
...
...
@@ -29,6 +29,18 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_coupon/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
{
...
...
@@ -29,6 +29,18 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_imcamera/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
{
...
...
@@ -29,6 +29,18 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_login/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
28
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -20,6 +20,18 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_member/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
defaultConfig
{
minSdkVersion
19
targetSdkVersion
28
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -21,6 +21,18 @@ android {
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_points/build.gradle
View file @
d14d088d
...
...
@@ -10,7 +10,7 @@ android {
targetSdkVersion
29
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -22,6 +22,17 @@ android {
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_search/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
{
...
...
@@ -29,6 +29,17 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_share/build.gradle
View file @
d14d088d
...
...
@@ -8,7 +8,7 @@ android {
defaultConfig
{
minSdkVersion
19
targetSdkVersion
28
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -19,6 +19,17 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
repositories
{
...
...
plugin_share/src/main/java/com/rv/share/view/RvWebView.java
View file @
d14d088d
...
...
@@ -82,7 +82,7 @@ public class RvWebView extends WebView {
setWebChromeClient
(
webChromeClient
);
}
p
ublic
WebViewClient
webViewClient
=
new
WebViewClient
()
{
p
rivate
WebViewClient
webViewClient
=
new
WebViewClient
()
{
@Override
public
boolean
shouldOverrideUrlLoading
(
WebView
view
,
WebResourceRequest
request
)
{
return
super
.
shouldOverrideUrlLoading
(
view
,
request
);
...
...
plugin_time/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
{
...
...
@@ -29,6 +29,19 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_version/build.gradle
View file @
d14d088d
...
...
@@ -7,8 +7,8 @@ android {
defaultConfig
{
minSdkVersion
19
targetSdkVersion
2
4
targetSdkVersion
2
8
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
...
...
@@ -20,6 +20,19 @@ android {
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
plugin_wallet/build.gradle
View file @
d14d088d
...
...
@@ -9,7 +9,7 @@ android {
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
1
versionName
"1.0"
flavorDimensions
"default"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
{
...
...
@@ -29,6 +29,18 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
productFlavors
{
//开发环境
dev
{
}
sit
{
}
pro
{
}
}
}
dependencies
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment