Update gradle versioning and package name

This commit is contained in:
UnitedAirforce
2025-09-25 14:22:30 +08:00
parent 175615587e
commit 5a67420b3d
4 changed files with 8 additions and 5 deletions

View File

@@ -21,6 +21,9 @@ async def batch_handler(request: Request):
query = batch_token.select().where(batch_token.c.token == token)
result = await database.fetch_one(query)
if not result:
return HTMLResponse(content="Invalid token", status_code=400)
if result['expire_at'] < int(time.time()):
return HTMLResponse(content="Token expired", status_code=400)

View File

@@ -6,7 +6,7 @@ plugins {
}
android {
namespace = "com.example.server_checker"
namespace = "jp.co.taito.groovecoasterzero"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
@@ -15,19 +15,20 @@ android {
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.server_checker"
applicationId = "jp.co.taito.groovecoasterzero"
// 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
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
versionCode = 76
versionName = "1.0.18"
}
buildTypes {

View File

@@ -1 +0,0 @@
7a8131d9aa79e42356d6df84508d44f230a6df95