mirror of
https://gitea.winboll.cc/ZhanGSKen/MyWinBoLL.git
synced 2026-08-14 21:47:11 +08:00
6eb16f7fb4
ByTheWay_V15.20.7源码编译参数修改情况: └─▶ git diff build.properties diff --git a/bytheway/build.properties b/bytheway/build.properties index 9719b62..4df5b19 100644 --- a/bytheway/build.properties +++ b/bytheway/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Mon Jul 13 06:10:46 HKT 2026 -stageCount=8 +#Tue Jul 21 18:53:02 GMT 2026 +stageCount=0 libraryProject= -baseVersion=15.20 -publishVersion=15.20.7 -buildCount=0 -baseBetaVersion=15.20.8 +baseVersion=15.21 +publishVersion=15.21.0 +buildCount=1 +baseBetaVersion=15.21.1
71 lines
2.2 KiB
XML
71 lines
2.2 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="cc.winboll.studio.bytheway">
|
|
|
|
<!-- 只能在前台获取精确的位置信息 -->
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
|
|
<!-- 只有在前台运行时才能获取大致位置信息 -->
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
|
|
|
<!-- 在后台使用位置信息 -->
|
|
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/>
|
|
|
|
<!-- 运行前台服务 -->
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
|
|
|
<!-- 开机自启权限 -->
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/MyAppTheme"
|
|
android:resizeableActivity="true"
|
|
android:name=".App">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<meta-data
|
|
android:name="android.max_aspect"
|
|
android:value="4.0"/>
|
|
|
|
<activity
|
|
android:name=".activities.GpsListActivity"
|
|
android:exported="true"/>
|
|
|
|
<service
|
|
android:name=".services.GpsReceiveService"
|
|
android:launchMode="singleInstance"
|
|
android:exported="false"/>
|
|
|
|
<receiver
|
|
android:name=".receivers.ServiceCheckReceiver"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<activity android:name="cc.winboll.studio.bytheway.activities.SettingsActivity"/>
|
|
|
|
<activity android:name="cc.winboll.studio.bytheway.activities.AboutActivity"/>
|
|
|
|
</application>
|
|
|
|
</manifest> |