mirror of
https://github.com/qwerfd2/Groove_Coaster_2_Server.git
synced 2025-12-22 03:30:18 +00:00
Update gradle versioning and package name
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
7a8131d9aa79e42356d6df84508d44f230a6df95
|
||||
Reference in New Issue
Block a user