Commit e590cae5 by sikang

bug fix

parent 0b7dba64
echo "1、GP包(无权限)"
echo "2、渠道包(有权限)"
echo -n "选择打包方式:"
read action
cd ../../
rm -rf resGuardApks
gradlew clean
gradlew resguardAppProductGoogleplayRelease
if((${action}=='1'))
then
gradlew resguardAppProductGoogleplayRelease
elif((${action}=='2'))
then
gradlew resguardAppProductWebsiteRelease
else
echo "未知的打包方式"
fi
#cd ../base/src/base/script
#./rename_project.sh
#cd ../../../../
......
......@@ -97,11 +97,9 @@ public class LibConfig {
public static void initLib(Application application) {
if (application != null) {
CONTEXT = application;
if (!TextUtils.isEmpty(XH_CHANNEL_NAME)) {
String channel = WalleChannelReader.getChannel(application.getApplicationContext());
if (!TextUtils.isEmpty(channel)) {
XH_CHANNEL_NAME = channel;
}
String channel = WalleChannelReader.getChannel(application.getApplicationContext());
if (!TextUtils.isEmpty(channel)) {
XH_CHANNEL_NAME = channel;
}
//APP名字
......
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