change name
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<application
|
<application
|
||||||
android:name=".Application"
|
android:name=".Application"
|
||||||
android:label="hiddify"
|
android:label="Hiddify Next"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
tools:targetApi="31">
|
tools:targetApi="31">
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ class ServiceNotification(private val service: Service) {
|
|||||||
|
|
||||||
private val notification by lazy {
|
private val notification by lazy {
|
||||||
NotificationCompat.Builder(service, notificationChannel).setWhen(0)
|
NotificationCompat.Builder(service, notificationChannel).setWhen(0)
|
||||||
.setContentTitle("hiddify next")
|
.setContentTitle("Hiddify Next")
|
||||||
.setContentText("service running").setOnlyAlertOnce(true)
|
.setContentText("service running").setOnlyAlertOnce(true)
|
||||||
.setSmallIcon(R.drawable.ic_stat_logo)
|
.setSmallIcon(R.drawable.ic_stat_logo)
|
||||||
.setCategory(NotificationCompat.CATEGORY_SERVICE)
|
.setCategory(NotificationCompat.CATEGORY_SERVICE)
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
<key>CFBundleDisplayName</key>
|
<key>CFBundleDisplayName</key>
|
||||||
<string>Hiddify</string>
|
<string>Hiddify Next</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>$(EXECUTABLE_NAME)</string>
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
<key>CFBundleInfoDictionaryVersion</key>
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
<string>6.0</string>
|
<string>6.0</string>
|
||||||
<key>CFBundleName</key>
|
<key>CFBundleName</key>
|
||||||
<string>hiddify</string>
|
<string>Hiddify Next</string>
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
|||||||
|
|
||||||
const mainChannel = AndroidNotificationChannel(
|
const mainChannel = AndroidNotificationChannel(
|
||||||
"com.hiddify.hiddify",
|
"com.hiddify.hiddify",
|
||||||
"Hiddify",
|
"Hiddify Next",
|
||||||
importance: Importance.high,
|
importance: Importance.high,
|
||||||
enableVibration: false,
|
enableVibration: false,
|
||||||
playSound: false,
|
playSound: false,
|
||||||
|
|||||||
@@ -4,10 +4,10 @@ project(runner LANGUAGES CXX)
|
|||||||
|
|
||||||
# The name of the executable created for the application. Change this to change
|
# The name of the executable created for the application. Change this to change
|
||||||
# the on-disk name of your application.
|
# the on-disk name of your application.
|
||||||
set(BINARY_NAME "hiddify")
|
set(BINARY_NAME "HiddifyNext")
|
||||||
# The unique GTK application identifier for this application. See:
|
# The unique GTK application identifier for this application. See:
|
||||||
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
|
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
|
||||||
set(APPLICATION_ID "com.hiddify.hiddify")
|
set(APPLICATION_ID "app.hiddify.com")
|
||||||
|
|
||||||
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
|
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
|
||||||
# versions of CMake.
|
# versions of CMake.
|
||||||
|
|||||||
@@ -5,10 +5,10 @@
|
|||||||
// 'flutter create' template.
|
// 'flutter create' template.
|
||||||
|
|
||||||
// The application's name. By default this is also the title of the Flutter window.
|
// The application's name. By default this is also the title of the Flutter window.
|
||||||
PRODUCT_NAME = hiddify
|
PRODUCT_NAME = Hiddify Next
|
||||||
|
|
||||||
// The application's bundle identifier
|
// The application's bundle identifier
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.hiddify.hiddify
|
PRODUCT_BUNDLE_IDENTIFIER = app.hiddify.com
|
||||||
|
|
||||||
// The copyright displayed in application information
|
// The copyright displayed in application information
|
||||||
PRODUCT_COPYRIGHT = Copyright © 2023 com.example. All rights reserved.
|
PRODUCT_COPYRIGHT = Copyright © 2023 hiddify.com. All rights reserved.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: hiddify
|
name: Hiddify Next
|
||||||
description: A Proxy Frontend.
|
description: A Proxy Frontend.
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ project(hiddify LANGUAGES CXX)
|
|||||||
|
|
||||||
# The name of the executable created for the application. Change this to change
|
# The name of the executable created for the application. Change this to change
|
||||||
# the on-disk name of your application.
|
# the on-disk name of your application.
|
||||||
set(BINARY_NAME "hiddify")
|
set(BINARY_NAME "HiddifyNext")
|
||||||
|
|
||||||
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
|
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
|
||||||
# versions of CMake.
|
# versions of CMake.
|
||||||
|
|||||||
@@ -89,12 +89,12 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "040904e4"
|
BLOCK "040904e4"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "hiddify" "\0"
|
VALUE "CompanyName", "Hiddify" "\0"
|
||||||
VALUE "FileDescription", "hiddify" "\0"
|
VALUE "FileDescription", "Hiddify" "\0"
|
||||||
VALUE "FileVersion", VERSION_AS_STRING "\0"
|
VALUE "FileVersion", VERSION_AS_STRING "\0"
|
||||||
VALUE "InternalName", "hiddify" "\0"
|
VALUE "InternalName", "hiddify" "\0"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2023 hiddify. All rights reserved." "\0"
|
VALUE "LegalCopyright", "Copyright (C) 2023 Hiddify.com. All rights reserved." "\0"
|
||||||
VALUE "OriginalFilename", "hiddify.exe" "\0"
|
VALUE "OriginalFilename", "HiddifyNext.exe" "\0"
|
||||||
VALUE "ProductName", "hiddify" "\0"
|
VALUE "ProductName", "hiddify" "\0"
|
||||||
VALUE "ProductVersion", VERSION_AS_STRING "\0"
|
VALUE "ProductVersion", VERSION_AS_STRING "\0"
|
||||||
END
|
END
|
||||||
|
|||||||
Reference in New Issue
Block a user