From 07793b11d666cc98eaa7603c3e952f2d0e09752a Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 00:26:28 +0600 Subject: [PATCH 01/20] Added a GitHub runner and uploads it to discord --- .github/workflows/beta.yml | 57 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/workflows/beta.yml diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml new file mode 100644 index 0000000000..9e8f3f3d14 --- /dev/null +++ b/.github/workflows/beta.yml @@ -0,0 +1,57 @@ +name: Build APK and Notify Discord + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repo + uses: actions/checkout@v3 + + - name: Set variables + run: | + VER=$(grep -E -o "versionName \".*\"" app/build.gradle | sed -e 's/versionName //g' | tr -d '"') + SHA=${{ github.sha }} + VERSION="$VER.${SHA:0:7}" + echo "Version $VERSION" + echo "VERSION=$VERSION" >> $GITHUB_ENV + + - name: Setup JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: 17 + cache: gradle + + - name: Make gradlew executable + run: chmod +x ./gradlew + + - name: Build with Gradle + run: ./gradlew assembleDebug + + - name: Upload a Build Artifact + uses: actions/upload-artifact@v3.0.0 + with: + name: Dantotsu + path: "app/build/outputs/apk/debug/app-debug.apk" + + - name: Upload APK to Discord + shell: bash + run: | + contentbody=$( jq -Rsa . <<< "${{ github.event.head_commit.message }}" ) + curl -F "payload_json={\"content\":\" everyone **${{ env.VERSION }}**\n\n${contentbody:1:-1}\"}" -F "dantotsu_debug=@app/build/outputs/apk/debug/app-debug.apk" ${{ secrets.DISCORD_WEBHOOK }} + + - name: Delete Old Pre-Releases + id: delete-pre-releases + uses: sgpublic/delete-release-action@master + with: + pre-release-drop: true + pre-release-keep-count: 3 + pre-release-drop-tag: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 9a4ed7ad540518f3f765811a8af20baaebe7427e Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 00:36:52 +0600 Subject: [PATCH 02/20] Update build.gradle --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 5e3cf66bfc..94e231f79f 100644 --- a/build.gradle +++ b/build.gradle @@ -18,6 +18,7 @@ buildscript { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" classpath "com.google.devtools.ksp:symbol-processing-api:$ksp_version" + classpath 'com.google.gms:google-services:3.0.0' classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:$ksp_version" } } From f81c566f1271b3275f7c8283c8ef3aaa9076447b Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 00:38:59 +0600 Subject: [PATCH 03/20] Update build.gradle --- build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 94e231f79f..edbc467187 100644 --- a/build.gradle +++ b/build.gradle @@ -13,13 +13,12 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:8.1.4' - classpath 'com.google.gms:google-services:4.4.0' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" classpath "com.google.devtools.ksp:symbol-processing-api:$ksp_version" - classpath 'com.google.gms:google-services:3.0.0' classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:$ksp_version" + classpath 'com.google.gms:google-services:4.4.0' } } From d11b37041588c07928c5a54a69f1df0b2d796d46 Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 01:04:43 +0600 Subject: [PATCH 04/20] Update build.gradle --- build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle b/build.gradle index edbc467187..98fc82239b 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,6 @@ buildscript { classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" classpath "com.google.devtools.ksp:symbol-processing-api:$ksp_version" classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:$ksp_version" - classpath 'com.google.gms:google-services:4.4.0' } } From 2c24a56446e7e9d5c97c291dade92fb68ddd6b6b Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 01:09:21 +0600 Subject: [PATCH 05/20] Update build.gradle --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 98fc82239b..edbc467187 100644 --- a/build.gradle +++ b/build.gradle @@ -18,6 +18,7 @@ buildscript { classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" classpath "com.google.devtools.ksp:symbol-processing-api:$ksp_version" classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:$ksp_version" + classpath 'com.google.gms:google-services:4.4.0' } } From 88c4d1f8a73ca4046bc8e97132e2f24acb1eacc6 Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 01:15:42 +0600 Subject: [PATCH 06/20] Add files via upload --- app/src/debug/google-services.json | 964 +++++++++++++++++++++++++++++ 1 file changed, 964 insertions(+) create mode 100644 app/src/debug/google-services.json diff --git a/app/src/debug/google-services.json b/app/src/debug/google-services.json new file mode 100644 index 0000000000..50f1386504 --- /dev/null +++ b/app/src/debug/google-services.json @@ -0,0 +1,964 @@ +{ + "project_info": { + "project_id": "mockproject-1234", + "project_number": "123456789000", + "name": "FirebaseQuickstarts", + "firebase_url": "https://mockproject-1234.firebaseio.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.samples.quickstart.admobexample", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.samples.quickstart.admobexample", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.samples.quickstart.admobexample", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.quickstart.analytics", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.quickstart.analytics", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.quickstart.analytics", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.samples.quickstart.appindexing", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.samples.quickstart.appindexing", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.samples.quickstart.appindexing", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.quickstart.auth", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.quickstart.auth", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.quickstart.auth", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.samples.quickstart.config", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.samples.quickstart.config", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.samples.quickstart.config", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.samples.quickstart.crash", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.samples.quickstart.crash", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.samples.quickstart.crash", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.quickstart.database", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.quickstart.database", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.quickstart.database", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.quickstart.deeplinks", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.quickstart.deeplinks", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.quickstart.deeplinks", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.quickstart.invites", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.quickstart.invites", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.quickstart.invites", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.example.fireeats", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.example.fireeats", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.example.fireeats", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.quickstart.fcm", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.quickstart.fcm", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.quickstart.fcm", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "com.google.firebase.quickstart.perfmon", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.quickstart.perfmon", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.quickstart.perfmon", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.quickstart.firebasestorage", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.quickstart.firebasestorage", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.quickstart.firebasestorage", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.samples.quickstart.functions", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.samples.quickstart.functions", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.samples.quickstart.functions", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.samples.apps.mlkit", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.samples.apps.mlkit", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.samples.apps.mlkit", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.appdistributionquickstart", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.appdistributionquickstart", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.appdistributionquickstart", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", + "client_id": "android:com.google.firebase.fiamquickstart", + "client_type": 1, + "android_client_info": { + "package_name": "com.google.firebase.fiamquickstart", + "certificate_hash": [] + } + }, + "oauth_client": [ + { + "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", + "client_type": 1, + "android_info": { + "package_name": "com.google.firebase.fiamquickstart", + "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" + } + }, + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "cloud_messaging_service": { + "status": 2, + "apns_config": [] + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", + "client_type": 3 + } + ] + }, + "google_signin_service": { + "status": 2 + }, + "ads_service": { + "status": 2, + "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", + "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + } + } + } + ], + "client_info": [], + "ARTIFACT_VERSION": "1" +} From e2f02dc93cf29375b9c5b3be022b2161fc897ef9 Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 01:22:01 +0600 Subject: [PATCH 07/20] Add files via upload --- app/src/debug/google-services.json | 937 +---------------------------- 1 file changed, 20 insertions(+), 917 deletions(-) diff --git a/app/src/debug/google-services.json b/app/src/debug/google-services.json index 50f1386504..7e54b99aff 100644 --- a/app/src/debug/google-services.json +++ b/app/src/debug/google-services.json @@ -1,964 +1,67 @@ { "project_info": { - "project_id": "mockproject-1234", - "project_number": "123456789000", - "name": "FirebaseQuickstarts", - "firebase_url": "https://mockproject-1234.firebaseio.com" + "project_number": "1039200814590", + "project_id": "dantotsu-1e50f", + "storage_bucket": "dantotsu-1e50f.appspot.com" }, "client": [ { "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.samples.quickstart.admobexample", - "client_type": 1, + "mobilesdk_app_id": "1:1039200814590:android:c372b8c1b92b825f1aacaf", "android_client_info": { - "package_name": "com.google.samples.quickstart.admobexample", - "certificate_hash": [] + "package_name": "ani.Dantotsu" } }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.samples.quickstart.admobexample", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.quickstart.analytics", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.quickstart.analytics", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.quickstart.analytics", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.samples.quickstart.appindexing", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.samples.quickstart.appindexing", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.samples.quickstart.appindexing", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.quickstart.auth", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.quickstart.auth", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.quickstart.auth", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.samples.quickstart.config", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.samples.quickstart.config", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.samples.quickstart.config", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.samples.quickstart.crash", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.samples.quickstart.crash", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.samples.quickstart.crash", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.quickstart.database", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.quickstart.database", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.quickstart.database", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.quickstart.deeplinks", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.quickstart.deeplinks", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.quickstart.deeplinks", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.quickstart.invites", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.quickstart.invites", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.quickstart.invites", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.example.fireeats", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.example.fireeats", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.example.fireeats", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.quickstart.fcm", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.quickstart.fcm", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.quickstart.fcm", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "com.google.firebase.quickstart.perfmon", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.quickstart.perfmon", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.quickstart.perfmon", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.quickstart.firebasestorage", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.quickstart.firebasestorage", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.quickstart.firebasestorage", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.samples.quickstart.functions", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.samples.quickstart.functions", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.samples.quickstart.functions", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], + "oauth_client": [], "api_key": [ { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + "current_key": "AIzaSyCiXo_q4S2ofA5oCztsoLnlDqJi3GtTJjY" } ], "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + "other_platform_oauth_client": [] } } }, { "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.samples.apps.mlkit", - "client_type": 1, + "mobilesdk_app_id": "1:1039200814590:android:40e14720ee97917e1aacaf", "android_client_info": { - "package_name": "com.google.firebase.samples.apps.mlkit", - "certificate_hash": [] + "package_name": "ani.dantotsu.beta" } }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.samples.apps.mlkit", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], + "oauth_client": [], "api_key": [ { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + "current_key": "AIzaSyCiXo_q4S2ofA5oCztsoLnlDqJi3GtTJjY" } ], "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + "other_platform_oauth_client": [] } } }, { "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.appdistributionquickstart", - "client_type": 1, + "mobilesdk_app_id": "1:1039200814590:android:40e14720ee97917e1aacaf", "android_client_info": { - "package_name": "com.google.firebase.appdistributionquickstart", - "certificate_hash": [] + "package_name": "ani.dantotsu" } }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.appdistributionquickstart", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, - "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063", - "client_id": "android:com.google.firebase.fiamquickstart", - "client_type": 1, - "android_client_info": { - "package_name": "com.google.firebase.fiamquickstart", - "certificate_hash": [] - } - }, - "oauth_client": [ - { - "client_id": "123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com", - "client_type": 1, - "android_info": { - "package_name": "com.google.firebase.fiamquickstart", - "certificate_hash": "4C20644DE36B8F89D25650C7D1FF9FBAE650FDF7" - } - }, - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ], + "oauth_client": [], "api_key": [ { - "current_key": "AIzbSzCn1N6LWIe6wthYyrgUUSAlUsdqMb-wvTo" + "current_key": "AIzaSyCiXo_q4S2ofA5oCztsoLnlDqJi3GtTJjY" } ], "services": { - "analytics_service": { - "status": 1 - }, - "cloud_messaging_service": { - "status": 2, - "apns_config": [] - }, "appinvite_service": { - "status": 2, - "other_platform_oauth_client": [ - { - "client_id": "123456789000-e4uksm38sne0bqrj6uvkbo4oiu4hvigl.apps.googleusercontent.com", - "client_type": 3 - } - ] - }, - "google_signin_service": { - "status": 2 - }, - "ads_service": { - "status": 2, - "test_banner_ad_unit_id": "ca-app-pub-3940256099942544/6300978111", - "test_interstitial_ad_unit_id": "ca-app-pub-3940256099942544/1033173712" + "other_platform_oauth_client": [] } } } ], - "client_info": [], - "ARTIFACT_VERSION": "1" -} + "configuration_version": "1" +} \ No newline at end of file From 85f03ece85536545bbb20f4d201e227c7610c785 Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 01:24:03 +0600 Subject: [PATCH 08/20] Add files via upload --- app/src/main/java/ani/dantotsu/others/DisabledReports.kt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 app/src/main/java/ani/dantotsu/others/DisabledReports.kt diff --git a/app/src/main/java/ani/dantotsu/others/DisabledReports.kt b/app/src/main/java/ani/dantotsu/others/DisabledReports.kt new file mode 100644 index 0000000000..8dc4a0e46a --- /dev/null +++ b/app/src/main/java/ani/dantotsu/others/DisabledReports.kt @@ -0,0 +1,4 @@ +package ani.dantotsu.others + +const val DisabledReports = false +//Setting this to false, will allow sending crash reports to Dantotsu's Firebase Crashlytics \ No newline at end of file From 1d2ce6ccaafad247f9e345cbb9f330690d008cb3 Mon Sep 17 00:00:00 2001 From: rebel onion <87634197+rebelonion@users.noreply.github.com> Date: Sat, 9 Dec 2023 13:38:38 -0600 Subject: [PATCH 09/20] Delete app/src/debug/google-services.json --- app/src/debug/google-services.json | 67 ------------------------------ 1 file changed, 67 deletions(-) delete mode 100644 app/src/debug/google-services.json diff --git a/app/src/debug/google-services.json b/app/src/debug/google-services.json deleted file mode 100644 index 7e54b99aff..0000000000 --- a/app/src/debug/google-services.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "project_info": { - "project_number": "1039200814590", - "project_id": "dantotsu-1e50f", - "storage_bucket": "dantotsu-1e50f.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:1039200814590:android:c372b8c1b92b825f1aacaf", - "android_client_info": { - "package_name": "ani.Dantotsu" - } - }, - "oauth_client": [], - "api_key": [ - { - "current_key": "AIzaSyCiXo_q4S2ofA5oCztsoLnlDqJi3GtTJjY" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [] - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:1039200814590:android:40e14720ee97917e1aacaf", - "android_client_info": { - "package_name": "ani.dantotsu.beta" - } - }, - "oauth_client": [], - "api_key": [ - { - "current_key": "AIzaSyCiXo_q4S2ofA5oCztsoLnlDqJi3GtTJjY" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [] - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:1039200814590:android:40e14720ee97917e1aacaf", - "android_client_info": { - "package_name": "ani.dantotsu" - } - }, - "oauth_client": [], - "api_key": [ - { - "current_key": "AIzaSyCiXo_q4S2ofA5oCztsoLnlDqJi3GtTJjY" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [] - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file From bd48ff05eb804e3d032e633e91e54c97a096d191 Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 01:46:45 +0600 Subject: [PATCH 10/20] Delete build.gradle --- build.gradle | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 build.gradle diff --git a/build.gradle b/build.gradle deleted file mode 100644 index edbc467187..0000000000 --- a/build.gradle +++ /dev/null @@ -1,33 +0,0 @@ -import org.jetbrains.kotlin.gradle.tasks.KotlinCompile - -buildscript { - repositories { - google() - mavenCentral() - maven { url 'https://jitpack.io' } - } - ext { - kotlin_version = '1.9.10' - ksp_version = '1.9.10-1.0.13' - } - - dependencies { - classpath 'com.android.tools.build:gradle:8.1.4' - classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" - classpath "com.google.devtools.ksp:symbol-processing-api:$ksp_version" - classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:$ksp_version" - classpath 'com.google.gms:google-services:4.4.0' - } -} - -tasks.register('clean', Delete) { - delete getLayout().getBuildDirectory() -} - -tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { - kotlinOptions { - freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn" - } -} From 133959a34e0646ed01eafe41811922818acaeb93 Mon Sep 17 00:00:00 2001 From: rebel onion <87634197+rebelonion@users.noreply.github.com> Date: Sat, 9 Dec 2023 13:47:35 -0600 Subject: [PATCH 11/20] target dev --- .github/workflows/beta.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 9e8f3f3d14..ba36e72be6 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - dev jobs: build: From 9eb29361dc360bbd8c8f0874bf3c2c378463d5b7 Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 01:49:06 +0600 Subject: [PATCH 12/20] Add files via upload --- build.gradle | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 build.gradle diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000000..6ffde7227b --- /dev/null +++ b/build.gradle @@ -0,0 +1,33 @@ +import org.jetbrains.kotlin.gradle.tasks.KotlinCompile + +buildscript { + repositories { + google() + mavenCentral() + maven { url 'https://jitpack.io' } + } + ext { + kotlin_version = '1.9.10' + ksp_version = '1.9.10-1.0.13' + } + + dependencies { + classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.google.gms:google-services:4.4.0' + classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" + classpath "com.google.devtools.ksp:symbol-processing-api:$ksp_version" + classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:$ksp_version" + } +} + +tasks.register('clean', Delete) { + delete getLayout().getBuildDirectory() +} + +tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { + kotlinOptions { + freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn" + } +} From 2c0d698ac9d5937164709bce0459f7b0a969fa72 Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 11:29:58 +0600 Subject: [PATCH 13/20] Tracking denied --- app/src/main/java/ani/dantotsu/others/DisabledReports.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/ani/dantotsu/others/DisabledReports.kt b/app/src/main/java/ani/dantotsu/others/DisabledReports.kt index 8dc4a0e46a..967dcb04b3 100644 --- a/app/src/main/java/ani/dantotsu/others/DisabledReports.kt +++ b/app/src/main/java/ani/dantotsu/others/DisabledReports.kt @@ -1,4 +1,4 @@ package ani.dantotsu.others -const val DisabledReports = false -//Setting this to false, will allow sending crash reports to Dantotsu's Firebase Crashlytics \ No newline at end of file +const val DisabledReports = true +//Setting this to false, will allow sending crash reports to Dantotsu's Firebase Crashlytics From 528f70c6de82043d02201de4ef12fbb277cb5fdd Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 12:09:42 +0600 Subject: [PATCH 14/20] Update beta.yml --- .github/workflows/beta.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index ba36e72be6..9e8f3f3d14 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - dev jobs: build: From 7336c7356138f49884bc5412194b5f757f13da2c Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 18:49:22 +0600 Subject: [PATCH 15/20] Update build.gradle --- app/build.gradle | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 1cde5bdba2..65235b40ce 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,5 @@ plugins { id 'com.android.application' - id 'com.google.gms.google-services' - id 'com.google.firebase.crashlytics' id 'kotlin-android' id 'kotlinx-serialization' id 'org.jetbrains.kotlin.android' @@ -77,11 +75,6 @@ dependencies { implementation "com.github.bumptech.glide:okhttp3-integration:$glide_version" implementation 'jp.wasabeef:glide-transformations:4.3.0' -// FireBase - implementation platform('com.google.firebase:firebase-bom:32.2.3') - implementation 'com.google.firebase:firebase-analytics-ktx:21.5.0' - implementation 'com.google.firebase:firebase-crashlytics-ktx:18.6.0' - // Exoplayer ext.exo_version = '1.2.0' implementation "androidx.media3:media3-exoplayer:$exo_version" From 86b74f022b2d06d361c7e8d2e65f8f35e98709db Mon Sep 17 00:00:00 2001 From: Sadwhy <99601717+Sadwhy@users.noreply.github.com> Date: Sun, 10 Dec 2023 18:50:52 +0600 Subject: [PATCH 16/20] Update build.gradle --- app/build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 65235b40ce..1cde5bdba2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,5 +1,7 @@ plugins { id 'com.android.application' + id 'com.google.gms.google-services' + id 'com.google.firebase.crashlytics' id 'kotlin-android' id 'kotlinx-serialization' id 'org.jetbrains.kotlin.android' @@ -75,6 +77,11 @@ dependencies { implementation "com.github.bumptech.glide:okhttp3-integration:$glide_version" implementation 'jp.wasabeef:glide-transformations:4.3.0' +// FireBase + implementation platform('com.google.firebase:firebase-bom:32.2.3') + implementation 'com.google.firebase:firebase-analytics-ktx:21.5.0' + implementation 'com.google.firebase:firebase-crashlytics-ktx:18.6.0' + // Exoplayer ext.exo_version = '1.2.0' implementation "androidx.media3:media3-exoplayer:$exo_version" From a13f98f6da4f6fc1db270a183cba672fa6e3e7d9 Mon Sep 17 00:00:00 2001 From: "sadmansaif017@gmail.com" Date: Wed, 13 Dec 2023 14:48:37 +0600 Subject: [PATCH 17/20] Clean Switch --- .../dantotsu/media/MediaListDialogFragment.kt | 2 +- .../main/res/color/button_switch_track.xml | 6 +- .../res/layout/activity_player_settings.xml | 62 +++++++++---------- .../res/layout/activity_reader_settings.xml | 42 ++++++------- app/src/main/res/layout/activity_settings.xml | 30 ++++----- .../activity_user_interface_settings.xml | 16 ++--- ...om_sheet_current_novel_reader_settings.xml | 6 +- .../bottom_sheet_current_reader_settings.xml | 22 +++---- .../res/layout/bottom_sheet_media_list.xml | 2 +- .../layout/bottom_sheet_media_list_small.xml | 2 +- app/src/main/res/layout/item_anime_watch.xml | 2 +- 11 files changed, 96 insertions(+), 96 deletions(-) diff --git a/app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt b/app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt index b1576e40ab..42642dc9fb 100644 --- a/app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt +++ b/app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt @@ -16,7 +16,7 @@ import ani.dantotsu.connections.anilist.Anilist import ani.dantotsu.connections.anilist.api.FuzzyDate import ani.dantotsu.connections.mal.MAL import ani.dantotsu.databinding.BottomSheetMediaListBinding -import com.google.android.material.switchmaterial.SwitchMaterial +import com.google.android.material.materialswitch.MaterialSwitch import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch import kotlinx.coroutines.withContext diff --git a/app/src/main/res/color/button_switch_track.xml b/app/src/main/res/color/button_switch_track.xml index a22a2cc251..b6b00672a3 100644 --- a/app/src/main/res/color/button_switch_track.xml +++ b/app/src/main/res/color/button_switch_track.xml @@ -1,5 +1,5 @@ - - - + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_player_settings.xml b/app/src/main/res/layout/activity_player_settings.xml index 2685484ca1..3980f9d6b0 100644 --- a/app/src/main/res/layout/activity_player_settings.xml +++ b/app/src/main/res/layout/activity_player_settings.xml @@ -90,7 +90,7 @@ android:paddingEnd="32dp" android:text="@string/video" /> - - + - - - - - - + @@ -643,7 +643,7 @@ android:paddingEnd="32dp" android:text="@string/auto" /> - - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - - - - - - - - - - - - + - - + diff --git a/app/src/main/res/layout/activity_settings.xml b/app/src/main/res/layout/activity_settings.xml index 849098faef..5424f526df 100644 --- a/app/src/main/res/layout/activity_settings.xml +++ b/app/src/main/res/layout/activity_settings.xml @@ -161,7 +161,7 @@ - - - - - - - - - - - - - - - - - + - - + - - + - - + - - - - - - - - - - - - - - - - - Date: Wed, 13 Dec 2023 14:49:53 +0600 Subject: [PATCH 18/20] Finalized --- app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt b/app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt index 42642dc9fb..fe5c0c93a0 100644 --- a/app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt +++ b/app/src/main/java/ani/dantotsu/media/MediaListDialogFragment.kt @@ -196,7 +196,7 @@ class MediaListDialogFragment : BottomSheetDialogFragment() { } media?.inCustomListsOf?.forEach { - SwitchMaterial(requireContext()).apply { + MaterialSwitch(requireContext()).apply { isChecked = it.value text = it.key setOnCheckedChangeListener { _, isChecked -> From 177927615474befb9507a6e0d0130bee94720da2 Mon Sep 17 00:00:00 2001 From: rebel onion <87634197+rebelonion@users.noreply.github.com> Date: Mon, 18 Dec 2023 17:15:24 -0600 Subject: [PATCH 19/20] Update beta.yml --- .github/workflows/beta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 9e8f3f3d14..f5c7d049c1 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -3,7 +3,7 @@ name: Build APK and Notify Discord on: push: branches: - - main + - dev jobs: build: From cfd59a6ba0dfa3c11b85bbbb8302995a92535716 Mon Sep 17 00:00:00 2001 From: rebel onion <87634197+rebelonion@users.noreply.github.com> Date: Mon, 18 Dec 2023 17:15:57 -0600 Subject: [PATCH 20/20] Update DisabledReports.kt --- app/src/main/java/ani/dantotsu/others/DisabledReports.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/ani/dantotsu/others/DisabledReports.kt b/app/src/main/java/ani/dantotsu/others/DisabledReports.kt index 967dcb04b3..ea2c779af8 100644 --- a/app/src/main/java/ani/dantotsu/others/DisabledReports.kt +++ b/app/src/main/java/ani/dantotsu/others/DisabledReports.kt @@ -1,4 +1,4 @@ package ani.dantotsu.others -const val DisabledReports = true +const val DisabledReports = false //Setting this to false, will allow sending crash reports to Dantotsu's Firebase Crashlytics