Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
X
xxsq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王雪伟
xxsq
Commits
12e21c03
Commit
12e21c03
authored
Sep 26, 2022
by
maxiaoliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改包名
parent
0107a1cb
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
60 additions
and
61 deletions
+60
-61
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+4
-4
AppFrontBackHelper.java
app/src/main/java/com/zxhl/xymhhf/AppFrontBackHelper.java
+1
-1
Appli.kt
app/src/main/java/com/zxhl/xymhhf/Appli.kt
+1
-2
InitActivity.kt
app/src/main/java/com/zxhl/xymhhf/activity/InitActivity.kt
+3
-3
MainActivity.java
app/src/main/java/com/zxhl/xymhhf/activity/MainActivity.java
+2
-2
file_paths.xml
app/src/main/res/xml/file_paths.xml
+2
-2
ExampleUnitTest.kt
app/src/test/java/com/zxbw/xxsq/ExampleUnitTest.kt
+1
-1
version.properties
app/version.properties
+1
-1
AndroidManifest.xml
cms/src/main/AndroidManifest.xml
+5
-5
Constant.java
cms/src/main/java/com/zxhl/cms/common/Constant.java
+4
-4
WeChatPay.kt
cms/src/main/java/com/zxhl/cms/utils/WeChatPay.kt
+1
-1
AndroidManifest.xml
moduleMain/src/main/AndroidManifest.xml
+34
-34
settings.gradle
settings.gradle
+1
-1
No files found.
app/src/main/AndroidManifest.xml
View file @
12e21c03
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
package=
"com.zxhl.
shop
"
>
package=
"com.zxhl.
xymhhf
"
>
<!-- 权限声明 -->
<!-- 允许程序打开网络套接字 -->
...
...
@@ -35,10 +35,10 @@
<uses-permission
android:name=
"android.permission.READ_PHONE_STATE"
/>
<!-- 用于写入缓存数据到扩展存储卡 -->
<!--必要权限,解决安全风险漏洞,发送和注册广播事件需要调用带有传递权限的接口-->
<permission
android:name=
"com.zxhl.
shop
.openadsdk.permission.TT_PANGOLIN"
android:name=
"com.zxhl.
xymhhf
.openadsdk.permission.TT_PANGOLIN"
android:protectionLevel=
"signature"
/>
<uses-permission
android:name=
"com.zxhl.
shop
.openadsdk.permission.TT_PANGOLIN"
/>
<uses-permission
android:name=
"com.zxhl.
xymhhf
.openadsdk.permission.TT_PANGOLIN"
/>
<uses-sdk
tools:overrideLibrary=
"com.bun.miitmdid"
/>
...
...
@@ -70,7 +70,7 @@
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:host=
"main"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
...
...
app/src/main/java/com/zxhl/
shop
/AppFrontBackHelper.java
→
app/src/main/java/com/zxhl/
xymhhf
/AppFrontBackHelper.java
View file @
12e21c03
package
com
.
zxhl
.
shop
;
package
com
.
zxhl
.
xymhhf
;
...
...
app/src/main/java/com/zxhl/
shop
/Appli.kt
→
app/src/main/java/com/zxhl/
xymhhf
/Appli.kt
View file @
12e21c03
package
com.zxhl.
shop
package
com.zxhl.
xymhhf
import
android.app.Activity
import
android.app.ActivityManager
...
...
@@ -19,7 +19,6 @@ import com.zxhl.cms.common.Config
import
com.zxhl.cms.common.Constant
import
com.zxhl.cms.net.SettingPreference
import
com.zxhl.cms.utils.EventUtils.onEvent
import
com.zxhl.cms.utils.JumpUtils
import
com.zxhl.cms.utils.MiitHelper
import
com.zxhl.cms.utils.Utils
import
java.util.*
...
...
app/src/main/java/com/zxhl/
shop
/activity/InitActivity.kt
→
app/src/main/java/com/zxhl/
xymhhf
/activity/InitActivity.kt
View file @
12e21c03
package
com.zxhl.
shop
.activity
package
com.zxhl.
xymhhf
.activity
import
android.content.Intent
import
android.text.TextUtils
...
...
@@ -9,8 +9,8 @@ import com.zxhl.cms.common.base.BaseActivity
import
com.zxhl.cms.net.SettingPreference
import
com.zxhl.cms.utils.Utils
import
com.zxhl.cms.widget.CenterDialog
import
com.zxhl.
shop
.Appli
import
com.zxhl.
shop
.R
import
com.zxhl.
xymhhf
.Appli
import
com.zxhl.
xymhhf
.R
/**
* @author (wangXuewei)
...
...
app/src/main/java/com/zxhl/
shop
/activity/MainActivity.java
→
app/src/main/java/com/zxhl/
xymhhf
/activity/MainActivity.java
View file @
12e21c03
package
com
.
zxhl
.
shop
.
activity
;
package
com
.
zxhl
.
xymhhf
.
activity
;
import
android.annotation.SuppressLint
;
import
android.content.Intent
;
...
...
@@ -19,7 +19,7 @@ import com.zxbw.modulemain.fragment.ShoppingMallFragment;
import
com.zxbw.modulemain.fragment.UserCenterFragment
;
import
com.zxbw.modulemain.view.NavigationBottomView
;
import
com.zxhl.cms.utils.ClipboardManagerUtil
;
import
com.zxhl.
shop
.R
;
import
com.zxhl.
xymhhf
.R
;
import
com.zxhl.cms.AppContext
;
import
com.zxhl.cms.common.Constant
;
import
com.zxhl.cms.common.base.BaseActivity
;
...
...
app/src/main/res/xml/file_paths.xml
View file @
12e21c03
...
...
@@ -2,11 +2,11 @@
<paths
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<external-path
name=
"cache"
path=
"Android/data/com.zxhl.
shop
/"
/>
path=
"Android/data/com.zxhl.
xymhhf
/"
/>
<external-path
name=
"downloadfile"
path=
"com.zxhl.
shop
/"
/>
path=
"com.zxhl.
xymhhf
/"
/>
<!--项目中用到的-->
<external-path
name=
"beta_external_files_path"
...
...
app/src/test/java/com/zxbw/xxsq/ExampleUnitTest.kt
View file @
12e21c03
package
com.zxhl.
shop
package
com.zxhl.
xymhhf
import
org.junit.Test
...
...
app/version.properties
View file @
12e21c03
PACKAGE_NAME
=
com.zxhl.
shop
PACKAGE_NAME
=
com.zxhl.
xymhhf
VERSION_CODE
=
25
VERSION_NAME
=
1.2.4
\ No newline at end of file
cms/src/main/AndroidManifest.xml
View file @
12e21c03
...
...
@@ -8,7 +8,7 @@
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:host=
"udesk"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
...
...
@@ -18,7 +18,7 @@
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:host=
"web"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
...
...
@@ -28,7 +28,7 @@
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:host=
"h5"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
...
...
@@ -38,7 +38,7 @@
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:host=
"pay"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
...
...
@@ -50,7 +50,7 @@
<!-- 友盟配置 -->
<meta-data
android:name=
"UMENG_APPKEY"
android:value=
"
5d0dd39b570df3d7c5000d1a
"
/>
android:value=
"
633168d788ccdf4b7e39aee6
"
/>
<meta-data
android:name=
"UMENG_CHANNEL"
android:value=
"${UMENG_CHANNEL_VALUE}"
/>
<!-- QQ配置 -->
...
...
cms/src/main/java/com/zxhl/cms/common/Constant.java
View file @
12e21c03
...
...
@@ -9,11 +9,11 @@ import android.Manifest;
public
class
Constant
{
//公共参数
String
UMENG_APPKEY
=
"
5d0dd39b570df3d7c5000d1a
"
;
String
UMENG_APPKEY
=
"
633168d788ccdf4b7e39aee6
"
;
String
s
=
"D0EV7FZL45A5DVKD"
;
public
static
final
String
scheme
=
"x
xsqshop
"
;
public
static
final
String
scheme
=
"x
ymhhf
"
;
public
static
int
UPLOADMAXSIZE
=
50
;
...
...
@@ -261,9 +261,9 @@ public class Constant {
public
static
class
Param
{
public
static
final
String
mPacketName
=
"com.zxhl.
shop
"
;
public
static
final
String
mPacketName
=
"com.zxhl.
xymhhf
"
;
public
static
boolean
isLocal
=
mPacketName
.
equals
(
"com.zx.localnews"
);
public
static
String
APPLS
=
"
5f758837834488be
"
;
public
static
String
APPLS
=
"
ff6aafe6651a47cb
"
;
public
static
String
androidId
=
""
;
public
static
String
carrier
=
""
;
public
static
String
h
=
""
;
...
...
cms/src/main/java/com/zxhl/cms/utils/WeChatPay.kt
View file @
12e21c03
...
...
@@ -105,7 +105,7 @@ object WeChatPay {
api
=
getIWXAPI
()
}
Log
.
d
(
"PAY_GET"
,
"api sendReq"
)
var
path
:
String
=
"/pages/pay/index?token="
+
entity
?.
token
+
"&pkg_name=com.zxhl.
shop
"
var
path
:
String
=
"/pages/pay/index?token="
+
entity
?.
token
+
"&pkg_name=com.zxhl.
xymhhf
"
val
req
=
WXLaunchMiniProgram
.
Req
()
val
g
=
Gson
()
val
obj
:
JsonObject
=
g
.
fromJson
(
entity
?.
payload
,
JsonObject
::
class
.
java
)
...
...
moduleMain/src/main/AndroidManifest.xml
View file @
12e21c03
...
...
@@ -16,7 +16,7 @@
<data
android:host=
"splash"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.LoginActivity"
>
...
...
@@ -27,7 +27,7 @@
<data
android:host=
"login"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.PhoneVouchersActivity"
>
...
...
@@ -38,7 +38,7 @@
<data
android:host=
"phone_voucher"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.CardVoucherActivity"
>
...
...
@@ -49,7 +49,7 @@
<data
android:host=
"cardvoucher"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.CardDetailActivity"
>
...
...
@@ -61,7 +61,7 @@
<data
android:host=
"carddetail"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.FlashSaleActivity"
>
...
...
@@ -72,7 +72,7 @@
<data
android:host=
"flashsale"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.WithDrawalActivity"
>
...
...
@@ -83,7 +83,7 @@
<data
android:host=
"withdrawal"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.SkillPayActivity"
>
...
...
@@ -94,7 +94,7 @@
<data
android:host=
"skillpay"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.BuyMemberActivity"
>
...
...
@@ -105,7 +105,7 @@
<data
android:host=
"buymember"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.CofigBugVipActivity"
>
...
...
@@ -116,7 +116,7 @@
<data
android:host=
"configbuyvip"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.AbuoutUsActivity"
>
...
...
@@ -127,7 +127,7 @@
<data
android:host=
"abuoutus"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
...
...
@@ -141,7 +141,7 @@
<data
android:host=
"rights_detail"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
...
...
@@ -153,7 +153,7 @@
<data
android:host=
"zero_buy"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
...
...
@@ -167,7 +167,7 @@
<data
android:host=
"tb_goods_detail"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
...
...
@@ -180,7 +180,7 @@
<data
android:host=
"goodsdetail"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.MyOrderActivity"
>
...
...
@@ -191,7 +191,7 @@
<data
android:host=
"myorder"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".box.activity.WareHouseActivity"
>
...
...
@@ -202,7 +202,7 @@
<data
android:host=
"warehouse"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".box.activity.ReceiveAddressActivity"
>
...
...
@@ -213,7 +213,7 @@
<data
android:host=
"receiveaddress"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".box.activity.OrderDetailActivity"
>
...
...
@@ -225,7 +225,7 @@
<data
android:host=
"orderdetail"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.ToPaySkillGoodsActivity"
>
...
...
@@ -237,7 +237,7 @@
<data
android:host=
"topayskill"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.SettingActivity"
>
...
...
@@ -248,7 +248,7 @@
<data
android:host=
"setting"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.OpenMemberOrderActivity"
>
...
...
@@ -260,7 +260,7 @@
<data
android:host=
"member_order"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.OpenMemberActivity"
>
...
...
@@ -271,7 +271,7 @@
<data
android:host=
"open_member"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.ShopOrderActivity"
>
...
...
@@ -283,7 +283,7 @@
<data
android:host=
"shoporder"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".box.activity.EditAddressActivity"
>
...
...
@@ -294,7 +294,7 @@
<data
android:host=
"editaddress"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".box.activity.OrderSuccessActivity"
>
...
...
@@ -305,7 +305,7 @@
<data
android:host=
"ordersuccess"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.SkillShopActivity"
>
...
...
@@ -317,7 +317,7 @@
<data
android:host=
"skillshop"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.PaySuccessActivity"
>
...
...
@@ -328,7 +328,7 @@
<data
android:host=
"paysucess"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
android:name=
".activity.RechargeActivity"
>
...
...
@@ -340,7 +340,7 @@
<data
android:host=
"recharge"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
...
...
@@ -353,7 +353,7 @@
<data
android:host=
"searchresult"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
...
...
@@ -366,7 +366,7 @@
<data
android:host=
"search"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
...
...
@@ -379,7 +379,7 @@
<data
android:host=
"user_question"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
...
...
@@ -392,7 +392,7 @@
<data
android:host=
"red_envelope"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
</activity>
<activity
...
...
@@ -405,7 +405,7 @@
<data
android:host=
"splash_background"
android:scheme=
"x
xsqshop
"
/>
android:scheme=
"x
ymhhf
"
/>
</intent-filter>
...
...
settings.gradle
View file @
12e21c03
...
...
@@ -2,4 +2,4 @@ include ':moduleZxAd'
include
':moduleMain'
include
':cms'
include
':app'
rootProject
.
name
=
"xxsqshop"
\ No newline at end of file
rootProject
.
name
=
"xymhhf"
\ No newline at end of file
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