Skip to content

Commit

Permalink
housekeeping: Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
HMBSbige committed Sep 13, 2021
1 parent 23f3c48 commit c78148c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
14 changes: 12 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

<activity
android:name="com.bige0.shadowsocksr.Shadowsocks"
android:exported="true"
android:label="@string/app_name"
android:launchMode="singleTask">
<intent-filter>
Expand All @@ -43,6 +44,7 @@
<activity
android:name="com.bige0.shadowsocksr.ProfileManagerActivity"
android:excludeFromRecents="true"
android:exported="true"
android:label="@string/profiles"
android:launchMode="singleTask"
android:parentActivityName="com.bige0.shadowsocksr.Shadowsocks">
Expand Down Expand Up @@ -105,6 +107,7 @@
android:parentActivityName="com.bige0.shadowsocksr.Shadowsocks" />
<activity
android:name="com.bige0.shadowsocksr.TaskerActivity"
android:exported="true"
android:icon="@mipmap/ic_launcher">
<intent-filter>
<action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" />
Expand All @@ -113,6 +116,7 @@
<activity
android:name="com.bige0.shadowsocksr.ShadowsocksQuickSwitchActivity"
android:excludeFromRecents="true"
android:exported="true"
android:label="@string/quick_switch"
android:launchMode="singleInstance"
android:taskAffinity=""
Expand All @@ -126,6 +130,7 @@
<activity
android:name="com.bige0.shadowsocksr.QuickToggleShortcut"
android:excludeFromRecents="true"
android:exported="true"
android:label="@string/quick_toggle"
android:launchMode="singleTask"
android:taskAffinity=""
Expand All @@ -142,14 +147,16 @@
<receiver
android:name="com.bige0.shadowsocksr.BootReceiver"
android:directBootAware="true"
android:enabled="false">
android:enabled="false"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name="com.bige0.shadowsocksr.TaskerReceiver"
android:exported="true"
tools:ignore="ExportedReceiver">
<intent-filter>
<action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
Expand Down Expand Up @@ -178,6 +185,7 @@
</service>
<service
android:name="com.bige0.shadowsocksr.ShadowsocksTileService"
android:exported="true"
android:icon="@drawable/ic_start_connected"
android:label="@string/quick_toggle"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Expand Down Expand Up @@ -218,5 +226,7 @@

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" tools:ignore="QueryAllPackagesPermission" />
<uses-permission
android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />
</manifest>
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ buildscript {
javaVersion = JavaVersion.VERSION_1_8
kotlinVersion = '1.5.30'
minSdkVersion = 21
sdkVersion = 30
compileSdkVersion = 30
versionCode = 2
versionName = '3.7.0'
sdkVersion = 31
compileSdkVersion = 31
versionCode = 3
versionName = '3.8.0'
}
repositories {
google()
Expand Down

0 comments on commit c78148c

Please sign in to comment.