Oyen333第一次提交

This commit is contained in:
xuhuixiang
2025-02-07 16:42:45 +08:00
parent d8b719d3a9
commit 9140640807
17 changed files with 40 additions and 283 deletions

View File

@@ -8,7 +8,7 @@ android {
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.web.mk88"
applicationId "com.web.mk88aud"
minSdkVersion 24
targetSdkVersion 31
versionCode 106
@@ -25,13 +25,13 @@ android {
}
signingConfigs {
debug {
storeFile file('mk88aud.jks')
storeFile file('mk88.jks')
storePassword "android2014"
keyAlias 'key0'
keyPassword "android2014"
}
release {
storeFile file('mk88aud.jks')
storeFile file('mk88.jks')
storePassword "android2014"
keyAlias 'key0'
keyPassword "android2014"

View File

@@ -1,21 +1,21 @@
{
"project_info": {
"project_number": "637535395676",
"project_id": "mk88au",
"storage_bucket": "mk88au.firebasestorage.app"
"project_number": "52740131004",
"project_id": "mk88aud",
"storage_bucket": "mk88aud.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:637535395676:android:4a3c0ba171a6445b11ab99",
"mobilesdk_app_id": "1:52740131004:android:0ac002bce5d93980ee68b9",
"android_client_info": {
"package_name": "com.web.mk88"
"package_name": "com.web.mk88aud"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyBVa3ICPExBtE4YSVn0Fuimd0FoELPCvWA"
"current_key": "AIzaSyBd7vIJNQmpgI-C90GSUSnni3t72feVu_Y"
}
],
"services": {

BIN
Mk88aud/mk88.jks Normal file

Binary file not shown.

Binary file not shown.

View File

@@ -4,7 +4,7 @@
"type": "APK",
"kind": "Directory"
},
"applicationId": "com.web.mk88",
"applicationId": "com.web.mk88aud",
"variantName": "processReleaseResources",
"elements": [
{

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.web.mk88">
package="com.web.mk88aud">
<uses-feature
android:name="android.hardware.camera"

View File

@@ -1,4 +1,4 @@
package com.web.mk88;
package com.web.mk88aud;
import android.content.pm.PackageInfo;

View File

@@ -1,4 +1,4 @@
package com.web.mk88;
package com.web.mk88aud;
import android.app.NotificationChannel;
import android.app.NotificationManager;
@@ -83,14 +83,14 @@ public class MyFirebaseMessageingService extends FirebaseMessagingService {
channelwinway.enableVibration(true);
notificationManager.createNotificationChannel(channelwinway);
notificationBuilder = new NotificationCompat.Builder(this, channelwinway.getId())
.setSmallIcon(com.web.base.R.mipmap.app_logo)
.setSmallIcon(R.mipmap.app_logo)
.setContentTitle(messageInfo.getTitle())
.setContentText(messageInfo.getContent())
.setAutoCancel(true)
.setContentIntent(pendingIntent);
} else {
notificationBuilder = new NotificationCompat.Builder(this, getString(com.web.base.R.string.app_name))
.setSmallIcon(com.web.base.R.mipmap.app_logo)
.setSmallIcon(R.mipmap.app_logo)
.setContentTitle(messageInfo.getTitle())
.setContentText(messageInfo.getContent())
.setAutoCancel(true)
@@ -129,14 +129,14 @@ public class MyFirebaseMessageingService extends FirebaseMessagingService {
channelwinway.enableVibration(true);
notificationManager.createNotificationChannel(channelwinway);
notificationBuilder = new NotificationCompat.Builder(this, channelwinway.getId())
.setSmallIcon(com.web.base.R.mipmap.app_logo)
.setSmallIcon(R.mipmap.app_logo)
.setContentTitle(title)
.setContentText(body)
.setAutoCancel(true)
.setContentIntent(pendingIntent);
} else {
notificationBuilder = new NotificationCompat.Builder(this, getString(com.web.base.R.string.app_name))
.setSmallIcon(com.web.base.R.mipmap.app_logo)
.setSmallIcon(R.mipmap.app_logo)
.setContentTitle(title)
.setContentText(body)
.setAutoCancel(true)

View File

@@ -1,4 +1,4 @@
package com.web.mk88;
package com.web.mk88aud;
import android.app.Application;
import android.content.Context;