Updated APP name

This commit is contained in:
2026-03-23 16:44:23 +08:00
parent f21498717b
commit b2a27f7801
12 changed files with 685 additions and 22 deletions

View File

@@ -6,22 +6,22 @@ plugins {
}
android {
namespace = "com.example.frontend"
namespace = "com.example.hightube"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.frontend"
applicationId = "com.example.hightube"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion

View File

@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="frontend"
android:label="Hightube"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity

View File

@@ -1,4 +1,4 @@
package com.example.frontend
package com.example.hightube
import io.flutter.embedding.android.FlutterActivity

File diff suppressed because one or more lines are too long