Bot Nav Done

This commit is contained in:
2023-06-14 14:34:44 +05:30
parent e59668d36b
commit 4a75200431
10 changed files with 241 additions and 35 deletions

View File

@@ -25,8 +25,14 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
android {
namespace "com.Xperience.FaucetHub.fhub"
namespace "com.Xperience.FaucetHub"
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
@@ -45,7 +51,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.Xperience.FaucetHub.fhub"
applicationId "com.Xperience.FaucetHub"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
@@ -54,11 +60,20 @@ android {
versionName flutterVersionName
}
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig signingConfigs.release
}
}
}

View File

@@ -0,0 +1,63 @@
{
"project_info": {
"project_number": "471640736230",
"project_id": "faucethub-6ff75",
"storage_bucket": "faucethub-6ff75.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:471640736230:android:205f06495a3d96b1f41627",
"android_client_info": {
"package_name": "com.Xperience.FaucetHub"
}
},
"oauth_client": [
{
"client_id": "471640736230-264bor5j37konvpp5v6mbmioliqth2gj.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.Xperience.FaucetHub",
"certificate_hash": "9d0ebcd5631981e981ed1b9e7a69a220c0846950"
}
},
{
"client_id": "471640736230-l3f55tf2qmc6nhuus7ha4jg2tlmuep72.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.Xperience.FaucetHub",
"certificate_hash": "7ba8fb82e48d60e8c5ce423488eb6d1a0d9394cc"
}
},
{
"client_id": "471640736230-qblci878igh6ubrokkhlim9u99n19p0k.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.Xperience.FaucetHub",
"certificate_hash": "a766d93f9b8aa6e20fce9357bd401d63e3e69d5c"
}
},
{
"client_id": "471640736230-lm7vslfmt2asvdf7folr7jk14j1culnr.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyA2djP4Bm2jyUWtkQ8a7uarkx2AIm29Vyk"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "471640736230-c23m2qce0m281qb2dbdt3pc4vve77q0m.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}

View File

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

View File

@@ -1,4 +1,4 @@
package com.Xperience.FaucetHub.fhub
package com.Xperience.FaucetHub
import io.flutter.embedding.android.FlutterActivity