diff --git a/android/app/build.gradle b/android/app/build.gradle index 4b99160..d3cb573 100755 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -55,7 +55,7 @@ android { } defaultConfig { - applicationId "app.brAccelerator.com" + applicationId "app.hifastvpn.com" minSdkVersion flutter.minSdkVersion targetSdkVersion 36 versionCode flutterVersionCode.toInteger() @@ -105,8 +105,8 @@ android { debugSymbolLevel 'FULL' } // 禁用代码混淆和资源压缩,解决VPN连接问题 - minifyEnabled false - shrinkResources false + minifyEnabled true + shrinkResources true // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 2bba432..147943f 100755 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -38,7 +38,7 @@ android:name=".Application" android:banner="@mipmap/ic_banner" android:icon="@mipmap/ic_launcher" - android:label="BearVPN" + android:label="Hi快VPN" android:roundIcon="@mipmap/ic_launcher_round" android:extractNativeLibs="true" tools:targetApi="31"> diff --git a/android/app/src/main/ic_launcher-playstore.png b/android/app/src/main/ic_launcher-playstore.png old mode 100644 new mode 100755 index aa728a5..21184ed Binary files a/android/app/src/main/ic_launcher-playstore.png and b/android/app/src/main/ic_launcher-playstore.png differ diff --git a/android/app/src/main/kotlin/com/hiddify/hiddify/bg/ServiceNotification.kt b/android/app/src/main/kotlin/com/hiddify/hiddify/bg/ServiceNotification.kt index 69ac203..b2db862 100755 --- a/android/app/src/main/kotlin/com/hiddify/hiddify/bg/ServiceNotification.kt +++ b/android/app/src/main/kotlin/com/hiddify/hiddify/bg/ServiceNotification.kt @@ -49,7 +49,7 @@ class ServiceNotification(private val status: MutableLiveData, private v NotificationCompat.Builder(service, notificationChannel) .setShowWhen(false) .setOngoing(true) - .setContentTitle("BearVPN") + .setContentTitle("Hi快VPN") .setOnlyAlertOnce(true) .setSmallIcon(R.drawable.ic_stat_logo) .setCategory(NotificationCompat.CATEGORY_SERVICE)