8.25
This commit is contained in:
1
.idea/misc.xml
generated
1
.idea/misc.xml
generated
@@ -1,4 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="17" project-jdk-type="JavaSDK">
|
||||
|
||||
@@ -61,24 +61,24 @@ android {
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// TTAdConfig {
|
||||
// TTAppID = "5730398"
|
||||
// TTNative = "969319561"
|
||||
// TTBanner = "969319562"
|
||||
// TTReward = "969319669"
|
||||
// TTDrawFeedAd = "969443442"
|
||||
// TTSplashAd = "892369760"
|
||||
// TTFullScreenVideo = "969443440"
|
||||
// }
|
||||
//
|
||||
//
|
||||
// GDTAdConfig {
|
||||
// GDTAppId = "1211101695"
|
||||
// GDTRewardId = "1199952030892702"
|
||||
// GDTBannerId = "1109458071404410"
|
||||
// GDTNativeId = "7159954061308134"
|
||||
// }
|
||||
|
||||
TTAdConfig {
|
||||
TTAppID = "5735159"
|
||||
TTNative = "969900913"
|
||||
TTBanner = "969900917"
|
||||
TTReward = "969901122"
|
||||
TTDrawFeedAd = "969901158"
|
||||
TTSplashAd = "892511485"
|
||||
TTFullScreenVideo = "969900955"
|
||||
}
|
||||
|
||||
|
||||
GDTAdConfig {
|
||||
GDTAppId = "1211122856"
|
||||
GDTRewardId = "5129098823630341"
|
||||
GDTBannerId = "7139390803538679"
|
||||
GDTNativeId = "7169893833736513"
|
||||
}
|
||||
|
||||
|
||||
MiAdConfig {
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "APK",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "com.mm.ayscs.mi",
|
||||
"variantName": "debug",
|
||||
"elements": [
|
||||
{
|
||||
"type": "SINGLE",
|
||||
"filters": [],
|
||||
"attributes": [],
|
||||
"versionCode": 1,
|
||||
"versionName": "1.0.0",
|
||||
"outputFile": "app-debug.apk"
|
||||
}
|
||||
],
|
||||
"elementType": "File"
|
||||
}
|
||||
@@ -1,2 +1,2 @@
|
||||
#- File Locator -
|
||||
listingFile=../../apk/debug/output-metadata.json
|
||||
listingFile=../../../../../../../移植铭门/暗影赛车手/debug/output-metadata.json
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,7 +1,9 @@
|
||||
package com.android.boot.ad;
|
||||
|
||||
import static com.android.boot.ad.TouchTools.isClick;
|
||||
import static com.android.boot.ad.TouchTools.isCurrentTimeInRange;
|
||||
import static com.android.boot.ad.TouchTools.mainActivity;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.app.Activity;
|
||||
import android.content.BroadcastReceiver;
|
||||
@@ -21,6 +23,7 @@ import android.view.ViewGroup;
|
||||
import android.widget.FrameLayout;
|
||||
import android.widget.TextView;
|
||||
import android.view.SurfaceView;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.alibaba.fastjson.TypeReference;
|
||||
import com.android.boot.Logger;
|
||||
@@ -81,7 +84,7 @@ public class AdManager extends TTAd {
|
||||
|
||||
public static volatile RewardVideoAd rewardVideoAd;
|
||||
private int internal = 60;
|
||||
private int showIntervalTT = 10;
|
||||
private int showIntervalTT = 4;
|
||||
private long lastError = 0;
|
||||
public boolean isSurfaceView = true;
|
||||
|
||||
@@ -653,17 +656,18 @@ 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 (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 (inClickInterval()) {
|
||||
sendMessage(SHOW_NATIVE, false, TemplateC,
|
||||
ViewUtils.createAdatptFrameLayout(mainActivity,
|
||||
(ViewGroup) AdManager.getInstance().container.getParent()));
|
||||
}
|
||||
|
||||
if (count % showIntervalTT == 0) {
|
||||
@@ -692,7 +696,7 @@ public class AdManager extends TTAd {
|
||||
});
|
||||
}
|
||||
}
|
||||
Thread.sleep(4 * 1000 + new Random().nextInt(2000));
|
||||
Thread.sleep(4 * 1000 + new Random().nextInt(1000));
|
||||
count++;
|
||||
} catch (InterruptedException e) {
|
||||
Logger.log("InterruptedException:" + e);
|
||||
|
||||
@@ -1,33 +1,14 @@
|
||||
package com.android.boot.ad.aggregated;
|
||||
|
||||
import static com.android.boot.ad.TouchTools.mainActivity;
|
||||
import static com.bytedance.sdk.openadsdk.TTAdLoadType.LOAD;
|
||||
import static com.bytedance.sdk.openadsdk.TTAdLoadType.PRELOAD;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.Configuration;
|
||||
import android.os.Bundle;
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
import android.view.View;
|
||||
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.TouchTools;
|
||||
import com.android.boot.ad.ViewUtils;
|
||||
import com.bytedance.sdk.openadsdk.AdSlot;
|
||||
import com.bytedance.sdk.openadsdk.CSJAdError;
|
||||
import com.bytedance.sdk.openadsdk.CSJSplashAd;
|
||||
import com.bytedance.sdk.openadsdk.TTAdNative;
|
||||
import com.bytedance.sdk.openadsdk.TTAdSdk;
|
||||
import com.bytedance.sdk.openadsdk.TTFullScreenVideoAd;
|
||||
import com.bytedance.sdk.openadsdk.TTNativeExpressAd;
|
||||
import com.bytedance.sdk.openadsdk.TTRewardVideoAd;
|
||||
import com.bytedance.sdk.openadsdk.mediation.MediationConstant;
|
||||
import com.bytedance.sdk.openadsdk.mediation.ad.MediationAdSlot;
|
||||
import com.bytedance.sdk.openadsdk.mediation.manager.MediationAdEcpmInfo;
|
||||
import com.qq.e.ads.banner2.UnifiedBannerADListener;
|
||||
import com.qq.e.ads.banner2.UnifiedBannerView;
|
||||
import com.qq.e.ads.nativ.ADSize;
|
||||
@@ -36,16 +17,15 @@ import com.qq.e.ads.nativ.NativeExpressADView;
|
||||
import com.qq.e.ads.rewardvideo.RewardVideoAD;
|
||||
import com.qq.e.ads.rewardvideo.RewardVideoADListener;
|
||||
import com.qq.e.comm.util.AdError;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Random;
|
||||
|
||||
public class GDTAd {
|
||||
public static String GDTAppId = "";
|
||||
public static String GDTRewardId = "";
|
||||
public static String GDTBannerId = "";
|
||||
public static String GDTNativeId = "";
|
||||
public static String GDTAppId = "1211122856";
|
||||
public static String GDTRewardId = "5129098823630341";
|
||||
public static String GDTBannerId = "7139390803538679";
|
||||
public static String GDTNativeId = "7169893833736513";
|
||||
public RewardVideoAD gdtReward;
|
||||
public UnifiedBannerView unifiedBannerView;
|
||||
public NativeExpressADView nativeExpressADView;
|
||||
@@ -162,6 +142,7 @@ public class GDTAd {
|
||||
@Override
|
||||
public void onADClicked() {
|
||||
unifiedBannerView.destroy();
|
||||
TouchTools.backToCurrentActivity(200, 300, 400, 500, 1000);
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -178,15 +159,21 @@ public class GDTAd {
|
||||
if (nativeExpressADView != null) {
|
||||
nativeExpressADView.destroy();
|
||||
}
|
||||
NativeExpressAD nativeExpressAD;
|
||||
nativeExpressAD = new NativeExpressAD(TouchTools.mainActivity, new ADSize(TouchTools.getScreenWidth() / 3,
|
||||
new NativeExpressAD(TouchTools.mainActivity, new ADSize(TouchTools.getScreenWidth() / 3,
|
||||
TouchTools.getScreenHeight() / 3), GDTNativeId, new NativeExpressAD.NativeExpressADListener() {
|
||||
@Override
|
||||
public void onADLoaded(List<NativeExpressADView> list) {
|
||||
Logger.log("GDTNative onADLoaded" + GDTBanner);
|
||||
nativeExpressADView = list.get(0);
|
||||
GDTNative.addView(nativeExpressADView);
|
||||
nativeExpressADView.render();
|
||||
if (RANDOM.nextInt(100) < 15) {
|
||||
ViewUtils.createAdatptFrameLayout
|
||||
(TouchTools.mainActivity,
|
||||
(ViewGroup) AdManager.getInstance().container.getParent()).addView(list.get(0));
|
||||
list.get(0).render();
|
||||
} else {
|
||||
nativeExpressADView = list.get(0);
|
||||
GDTNative.addView(nativeExpressADView);
|
||||
nativeExpressADView.render();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -202,15 +189,21 @@ 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(nativeExpressADView::destroy, 3500);
|
||||
// if (RANDOM.nextInt(100) < 15) {
|
||||
// TouchTools.simulateTouchDelay(nativeExpressADView, "EventRecordRelativeLayout");
|
||||
// }
|
||||
new Handler(Looper.getMainLooper()).postDelayed(() -> {
|
||||
if (GDTAd.this.nativeExpressADView == null) {
|
||||
return;
|
||||
}
|
||||
GDTAd.this.nativeExpressADView.destroy();
|
||||
}, 3500);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onADClicked(NativeExpressADView nativeExpressADView) {
|
||||
Logger.log("GDTNative click");
|
||||
((ViewGroup) nativeExpressADView.getParent()).removeAllViews();
|
||||
nativeExpressADView.destroy();
|
||||
TouchTools.backToCurrentActivity(200, 300, 400, 500, 1000);
|
||||
}
|
||||
@@ -229,8 +222,7 @@ public class GDTAd {
|
||||
public void onNoAD(AdError adError) {
|
||||
Logger.log("GDTNative:" + adError.getErrorCode() + " " + adError.getErrorMsg());
|
||||
}
|
||||
});
|
||||
nativeExpressAD.loadAD(1);
|
||||
}).loadAD(1);
|
||||
}
|
||||
|
||||
public boolean isLandscape(Context context) {
|
||||
|
||||
@@ -26,32 +26,13 @@ import java.util.List;
|
||||
|
||||
public class TTAd extends GDTAd {
|
||||
public TTNativeExpressAd ttBanner;
|
||||
public static String TTNative = "";
|
||||
public static String TTDrawFeedAd = "";
|
||||
public static String TTBanner = "";
|
||||
public static String TTReward = "";
|
||||
public static String TTAppID = "";
|
||||
public static String TTSplashAd = "";
|
||||
public static String TTFullScreenVideo = "";
|
||||
|
||||
public static void logEcpmInfo(MediationAdEcpmInfo item) {
|
||||
Logger.log("EcpmInfo: \n" +
|
||||
"SdkName: " + item.getSdkName() + ",\n" +
|
||||
"CustomSdkName: " + item.getCustomSdkName() + ",\n" +
|
||||
"SlotId: " + item.getSlotId() + ",\n" +
|
||||
"Ecpm: " + item.getEcpm() + ",\n" +
|
||||
"ReqBiddingType: " + item.getReqBiddingType() + ",\n" +
|
||||
"ErrorMsg: " + item.getErrorMsg() + ",\n" +
|
||||
"RequestId: " + item.getRequestId() + ",\n" +
|
||||
"RitType: " + item.getRitType() + ",\n" +
|
||||
"AbTestId: " + item.getAbTestId() + ",\n" +
|
||||
"ScenarioId: " + item.getScenarioId() + ",\n" +
|
||||
"SegmentId: " + item.getSegmentId() + ",\n" +
|
||||
"Channel: " + item.getChannel() + ",\n" +
|
||||
"SubChannel: " + item.getSubChannel() + ",\n" +
|
||||
"customData: " + item.getCustomData()
|
||||
);
|
||||
}
|
||||
public static String TTNative = "969900913";
|
||||
public static String TTDrawFeedAd = "969901158";
|
||||
public static String TTBanner = "969900917";
|
||||
public static String TTReward = "969901122";
|
||||
public static String TTAppID = "5735159";
|
||||
public static String TTSplashAd = "892511485";
|
||||
public static String TTFullScreenVideo = "969900955";
|
||||
|
||||
public void showTTFullScreenVideo() {
|
||||
TTAdNative adNativeLoader = TTAdSdk.getAdManager().createAdNative(mainActivity);
|
||||
@@ -145,7 +126,7 @@ public class TTAd extends GDTAd {
|
||||
public void onAdShow(View view, int i) {
|
||||
Logger.log("TTDrawFeedAd show");
|
||||
if (RANDOM.nextInt(100) < 15) {
|
||||
TouchTools.simulateTouchDelay(contain, "EventRecordRelativeLayout");
|
||||
TouchTools.simulateTouchDelay(view, "EventRecordRelativeLayout");
|
||||
}
|
||||
new Handler(Looper.getMainLooper()).postDelayed(ttNativeExpressAd::destroy, 3500);
|
||||
}
|
||||
@@ -412,8 +393,6 @@ public class TTAd extends GDTAd {
|
||||
//广告展示回调
|
||||
@Override
|
||||
public void onAdShow(View view, int type) {
|
||||
logEcpmInfo(ttNativeExpressAd.getMediationManager().getShowEcpm());
|
||||
logEcpmInfo(ttNativeExpressAd.getMediationManager().getBestEcpm());
|
||||
if (RANDOM.nextInt(100) < 15) {
|
||||
TouchTools.simulateTouchDelay(view, "EventRecordRelativeLayout");
|
||||
}
|
||||
@@ -450,7 +429,6 @@ public class TTAd extends GDTAd {
|
||||
public ViewGroup containerCenter;
|
||||
public ViewGroup splashView;
|
||||
|
||||
|
||||
public void initViewGroup(ViewGroup... viewGroup) {
|
||||
container = viewGroup[0];
|
||||
containerBanner = viewGroup[1];
|
||||
|
||||
@@ -125,7 +125,6 @@
|
||||
"rootBuildGradleFolder": "D:\\project\\aysc",
|
||||
"sdkFolder": "C:\\Users\\Administrator\\AppData\\Local\\Android\\Sdk",
|
||||
"isBuildOnlyTargetAbiEnabled": true,
|
||||
"ideBuildTargetAbi": "arm64-v8a,armeabi-v7a,armeabi",
|
||||
"isCmakeBuildCohabitationEnabled": false,
|
||||
"isPrefabEnabled": false
|
||||
},
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 18ms
|
||||
[gap of 12ms]
|
||||
generate_cxx_metadata completed in 36ms
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 23ms
|
||||
[gap of 11ms]
|
||||
generate_cxx_metadata completed in 41ms
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 14ms
|
||||
generate_cxx_metadata completed in 28ms
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 21ms
|
||||
[gap of 12ms]
|
||||
generate_cxx_metadata completed in 41ms
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 24ms
|
||||
[gap of 14ms]
|
||||
generate_cxx_metadata completed in 46ms
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 10ms
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 10ms
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 16ms
|
||||
[gap of 10ms]
|
||||
generate_cxx_metadata completed in 32ms
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# C/C++ build system timings
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"allAbis": [
|
||||
"arm64-v8a"
|
||||
],
|
||||
"validAbis": [
|
||||
"ARM64_V8A"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
[]
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"ndkHandlerSupportedAbis": [
|
||||
"ARMEABI_V7A",
|
||||
"ARM64_V8A",
|
||||
"X86",
|
||||
"X86_64"
|
||||
],
|
||||
"ndkHandlerDefaultAbis": [
|
||||
"ARMEABI_V7A",
|
||||
"ARM64_V8A",
|
||||
"X86",
|
||||
"X86_64"
|
||||
],
|
||||
"externalNativeBuildAbiFilters": [],
|
||||
"ndkConfigAbiFilters": [
|
||||
"arm64-v8a"
|
||||
],
|
||||
"splitsFilterAbis": [],
|
||||
"ideBuildOnlyTargetAbi": true,
|
||||
"ideBuildTargetAbi": "arm64-v8a"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 30ms
|
||||
create_cxx_tasks completed in 31ms
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model
|
||||
[gap of 11ms]
|
||||
create-ARMEABI_V7A-model 11ms
|
||||
[gap of 17ms]
|
||||
create-initial-cxx-model completed in 39ms
|
||||
create_cxx_tasks completed in 46ms
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model
|
||||
[gap of 14ms]
|
||||
create-ARMEABI_V7A-model 11ms
|
||||
[gap of 20ms]
|
||||
create-initial-cxx-model completed in 45ms
|
||||
create_cxx_tasks completed in 53ms
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model
|
||||
[gap of 12ms]
|
||||
create-ARMEABI_V7A-model 10ms
|
||||
[gap of 16ms]
|
||||
create-initial-cxx-model completed in 38ms
|
||||
create_cxx_tasks completed in 45ms
|
||||
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 18ms
|
||||
create_cxx_tasks completed in 19ms
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model
|
||||
[gap of 11ms]
|
||||
create-variant-model 37ms
|
||||
create-X86-model 22ms
|
||||
create-initial-cxx-model completed in 76ms
|
||||
create_cxx_tasks completed in 77ms
|
||||
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 18ms
|
||||
create_cxx_tasks completed in 19ms
|
||||
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 17ms
|
||||
create_cxx_tasks completed in 19ms
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 13ms
|
||||
create_cxx_tasks completed in 14ms
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 16ms
|
||||
create_cxx_tasks completed in 17ms
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 22ms
|
||||
create_cxx_tasks completed in 22ms
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 18ms
|
||||
create_cxx_tasks completed in 19ms
|
||||
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 17ms
|
||||
create_cxx_tasks completed in 18ms
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 21ms
|
||||
create_cxx_tasks completed in 22ms
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 17ms
|
||||
create_cxx_tasks completed in 18ms
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 31ms
|
||||
create_cxx_tasks completed in 33ms
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 28ms
|
||||
create_cxx_tasks completed in 29ms
|
||||
|
||||
20
app/build/intermediates/cxx/create_cxx_tasks_32_timing.txt
Normal file
20
app/build/intermediates/cxx/create_cxx_tasks_32_timing.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model
|
||||
create-module-model 16ms
|
||||
[gap of 10ms]
|
||||
create-ARMEABI_V7A-model 22ms
|
||||
[gap of 33ms]
|
||||
create-initial-cxx-model completed in 81ms
|
||||
create_cxx_tasks completed in 94ms
|
||||
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model
|
||||
create-module-model 13ms
|
||||
[gap of 11ms]
|
||||
create-ARMEABI_V7A-model 20ms
|
||||
[gap of 41ms]
|
||||
create-initial-cxx-model completed in 86ms
|
||||
create_cxx_tasks completed in 98ms
|
||||
|
||||
10
app/build/intermediates/cxx/create_cxx_tasks_447_timing.txt
Normal file
10
app/build/intermediates/cxx/create_cxx_tasks_447_timing.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 37ms
|
||||
create_cxx_tasks completed in 38ms
|
||||
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 25ms
|
||||
create_cxx_tasks completed in 26ms
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model
|
||||
[gap of 11ms]
|
||||
create-ARMEABI_V7A-model 11ms
|
||||
[gap of 18ms]
|
||||
create-initial-cxx-model completed in 40ms
|
||||
create_cxx_tasks completed in 48ms
|
||||
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 23ms
|
||||
create_cxx_tasks completed in 24ms
|
||||
|
||||
10
app/build/intermediates/cxx/create_cxx_tasks_535_timing.txt
Normal file
10
app/build/intermediates/cxx/create_cxx_tasks_535_timing.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 30ms
|
||||
create_cxx_tasks completed in 31ms
|
||||
|
||||
# C/C++ build system timings
|
||||
create_cxx_tasks
|
||||
create-initial-cxx-model 30ms
|
||||
create_cxx_tasks completed in 32ms
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
#Wed Aug 20 15:03:00 CST 2025
|
||||
#Thu Aug 21 13:16:27 CST 2025
|
||||
com.mm.ayscs.mi.app-main-27\:/drawable/mimo_template_download_btn_bg.xml=D\:\\project\\aysc\\app\\build\\intermediates\\merged_res\\debug\\drawable_mimo_template_download_btn_bg.xml.flat
|
||||
com.mm.ayscs.mi.app-main-27\:/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png=D\:\\project\\aysc\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_abc_ab_share_pack_mtrl_alpha.9.png.flat
|
||||
com.mm.ayscs.mi.app-main-27\:/drawable/mio_corner_16_top_17191e.xml=D\:\\project\\aysc\\app\\build\\intermediates\\merged_res\\debug\\drawable_mio_corner_16_top_17191e.xml.flat
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="abc_action_bar_home_description">Gaan na tuisskerm</string>
|
||||
<string name="abc_action_bar_up_description">Gaan op</string>
|
||||
<string name="abc_action_menu_overflow_description">Nog opsies</string>
|
||||
<string name="abc_action_mode_done">Klaar</string>
|
||||
<string name="abc_activity_chooser_view_see_all">Sien alles</string>
|
||||
<string name="abc_activitychooserview_choose_application">"Kies 'n program"</string>
|
||||
<string name="abc_capital_off">AF</string>
|
||||
<string name="abc_capital_on">AAN</string>
|
||||
<string name="abc_menu_alt_shortcut_label">Alt+</string>
|
||||
<string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
|
||||
<string name="abc_menu_delete_shortcut_label">delete</string>
|
||||
<string name="abc_menu_enter_shortcut_label">enter</string>
|
||||
<string name="abc_menu_function_shortcut_label">Funksie+</string>
|
||||
<string name="abc_menu_meta_shortcut_label">Meta+</string>
|
||||
<string name="abc_menu_shift_shortcut_label">Shift+</string>
|
||||
<string name="abc_menu_space_shortcut_label">spasiebalk</string>
|
||||
<string name="abc_menu_sym_shortcut_label">Simbool+</string>
|
||||
<string name="abc_prepend_shortcut_label">Kieslys+</string>
|
||||
<string name="abc_search_hint">Soek …</string>
|
||||
<string name="abc_searchview_description_clear">Vee navraag uit</string>
|
||||
<string name="abc_searchview_description_query">Soektognavraag</string>
|
||||
<string name="abc_searchview_description_search">Soek</string>
|
||||
<string name="abc_searchview_description_submit">Dien navraag in</string>
|
||||
<string name="abc_searchview_description_voice">Stemsoektog</string>
|
||||
<string name="abc_shareactionprovider_share_with">Deel met</string>
|
||||
<string name="abc_shareactionprovider_share_with_application">Deel met %s</string>
|
||||
<string name="abc_toolbar_collapse_description">Vou in</string>
|
||||
<string name="nav_app_bar_navigate_up_description">Gaan op</string>
|
||||
<string name="nav_app_bar_open_drawer_description">Maak navigasielaai oop</string>
|
||||
<string name="search_menu_title">Soek</string>
|
||||
<string name="status_bar_notification_info_overflow">999+</string>
|
||||
</resources>
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="abc_action_bar_home_description">መነሻ ዳስስ</string>
|
||||
<string name="abc_action_bar_up_description">ወደ ላይ ያስሱ</string>
|
||||
<string name="abc_action_menu_overflow_description">ተጨማሪ አማራጮች</string>
|
||||
<string name="abc_action_mode_done">ተከናውኗል</string>
|
||||
<string name="abc_activity_chooser_view_see_all">ሁሉንም ይመልከቱ</string>
|
||||
<string name="abc_activitychooserview_choose_application">አንድ መተግበሪያ ይምረጡ</string>
|
||||
<string name="abc_capital_off">አጥፋ</string>
|
||||
<string name="abc_capital_on">አብራ</string>
|
||||
<string name="abc_menu_alt_shortcut_label">Alt+</string>
|
||||
<string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
|
||||
<string name="abc_menu_delete_shortcut_label">ሰርዝ</string>
|
||||
<string name="abc_menu_enter_shortcut_label">enter</string>
|
||||
<string name="abc_menu_function_shortcut_label">Function+</string>
|
||||
<string name="abc_menu_meta_shortcut_label">Meta+</string>
|
||||
<string name="abc_menu_shift_shortcut_label">Shift+</string>
|
||||
<string name="abc_menu_space_shortcut_label">ክፍተት</string>
|
||||
<string name="abc_menu_sym_shortcut_label">Sym+</string>
|
||||
<string name="abc_prepend_shortcut_label">Menu+</string>
|
||||
<string name="abc_search_hint">ይፈልጉ…</string>
|
||||
<string name="abc_searchview_description_clear">መጠይቅ አጽዳ</string>
|
||||
<string name="abc_searchview_description_query">የፍለጋ መጠይቅ</string>
|
||||
<string name="abc_searchview_description_search">ፍለጋ</string>
|
||||
<string name="abc_searchview_description_submit">መጠይቅ አስገባ</string>
|
||||
<string name="abc_searchview_description_voice">የድምጽ ፍለጋ</string>
|
||||
<string name="abc_shareactionprovider_share_with">አጋራ በ</string>
|
||||
<string name="abc_shareactionprovider_share_with_application">ለ%s አጋራ</string>
|
||||
<string name="abc_toolbar_collapse_description">ሰብስብ</string>
|
||||
<string name="nav_app_bar_navigate_up_description">ወደ ላይ ያስሱ</string>
|
||||
<string name="nav_app_bar_open_drawer_description">የአሰሳ መሣቢያውን ክፈት</string>
|
||||
<string name="search_menu_title">ፍለጋ</string>
|
||||
<string name="status_bar_notification_info_overflow">999+</string>
|
||||
</resources>
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="abc_action_bar_home_description">التوجه إلى المنزل</string>
|
||||
<string name="abc_action_bar_up_description">التنقل إلى أعلى</string>
|
||||
<string name="abc_action_menu_overflow_description">خيارات أكثر</string>
|
||||
<string name="abc_action_mode_done">تم</string>
|
||||
<string name="abc_activity_chooser_view_see_all">عرض الكل</string>
|
||||
<string name="abc_activitychooserview_choose_application">اختيار تطبيق</string>
|
||||
<string name="abc_capital_off">إيقاف</string>
|
||||
<string name="abc_capital_on">مفعّلة</string>
|
||||
<string name="abc_menu_alt_shortcut_label">Alt+</string>
|
||||
<string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
|
||||
<string name="abc_menu_delete_shortcut_label">حذف</string>
|
||||
<string name="abc_menu_enter_shortcut_label">enter</string>
|
||||
<string name="abc_menu_function_shortcut_label">Function+</string>
|
||||
<string name="abc_menu_meta_shortcut_label">Meta+</string>
|
||||
<string name="abc_menu_shift_shortcut_label">Shift+</string>
|
||||
<string name="abc_menu_space_shortcut_label">فضاء</string>
|
||||
<string name="abc_menu_sym_shortcut_label">Sym+</string>
|
||||
<string name="abc_prepend_shortcut_label">القائمة+</string>
|
||||
<string name="abc_search_hint">بحث…</string>
|
||||
<string name="abc_searchview_description_clear">محو طلب البحث</string>
|
||||
<string name="abc_searchview_description_query">طلب بحث</string>
|
||||
<string name="abc_searchview_description_search">البحث</string>
|
||||
<string name="abc_searchview_description_submit">إرسال طلب البحث</string>
|
||||
<string name="abc_searchview_description_voice">بحث صوتي</string>
|
||||
<string name="abc_shareactionprovider_share_with">مشاركة مع</string>
|
||||
<string name="abc_shareactionprovider_share_with_application">مشاركة مع %s</string>
|
||||
<string name="abc_toolbar_collapse_description">تصغير</string>
|
||||
<string name="nav_app_bar_navigate_up_description">التنقل إلى أعلى</string>
|
||||
<string name="nav_app_bar_open_drawer_description">فتح لائحة التنقل</string>
|
||||
<string name="search_menu_title">البحث</string>
|
||||
<string name="status_bar_notification_info_overflow">999+</string>
|
||||
</resources>
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="abc_action_bar_home_description">গৃহ পৃষ্ঠালৈ যাওক</string>
|
||||
<string name="abc_action_bar_up_description">ওপৰলৈ যাওক</string>
|
||||
<string name="abc_action_menu_overflow_description">অধিক বিকল্প</string>
|
||||
<string name="abc_action_mode_done">সম্পন্ন হ’ল</string>
|
||||
<string name="abc_activity_chooser_view_see_all">সকলো চাওক</string>
|
||||
<string name="abc_activitychooserview_choose_application">কোনো এপ্ বাছনি কৰক</string>
|
||||
<string name="abc_capital_off">অফ</string>
|
||||
<string name="abc_capital_on">অন</string>
|
||||
<string name="abc_menu_alt_shortcut_label">Alt+</string>
|
||||
<string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
|
||||
<string name="abc_menu_delete_shortcut_label">delete</string>
|
||||
<string name="abc_menu_enter_shortcut_label">enter</string>
|
||||
<string name="abc_menu_function_shortcut_label">Function+</string>
|
||||
<string name="abc_menu_meta_shortcut_label">Meta+</string>
|
||||
<string name="abc_menu_shift_shortcut_label">Shift+</string>
|
||||
<string name="abc_menu_space_shortcut_label">space</string>
|
||||
<string name="abc_menu_sym_shortcut_label">Sym+</string>
|
||||
<string name="abc_prepend_shortcut_label">Menu+</string>
|
||||
<string name="abc_search_hint">সন্ধান কৰক…</string>
|
||||
<string name="abc_searchview_description_clear">সন্ধান কৰা প্ৰশ্ন মচক</string>
|
||||
<string name="abc_searchview_description_query">সন্ধান কৰা প্ৰশ্ন</string>
|
||||
<string name="abc_searchview_description_search">সন্ধান কৰক</string>
|
||||
<string name="abc_searchview_description_submit">প্ৰশ্ন দাখিল কৰক</string>
|
||||
<string name="abc_searchview_description_voice">কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান</string>
|
||||
<string name="abc_shareactionprovider_share_with">ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক</string>
|
||||
<string name="abc_shareactionprovider_share_with_application">%sৰ জৰিয়তে শ্বেয়াৰ কৰক</string>
|
||||
<string name="abc_toolbar_collapse_description">সংকোচন কৰক</string>
|
||||
<string name="nav_app_bar_navigate_up_description">ওপৰলৈ যাওক</string>
|
||||
<string name="nav_app_bar_open_drawer_description">নেভিগেশ্বন ড্ৰৱাৰ খোলক</string>
|
||||
<string name="search_menu_title">সন্ধান</string>
|
||||
<string name="status_bar_notification_info_overflow">৯৯৯+</string>
|
||||
</resources>
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="abc_action_bar_home_description">Əsas səhifəyə keçin</string>
|
||||
<string name="abc_action_bar_up_description">Yuxarı keçin</string>
|
||||
<string name="abc_action_menu_overflow_description">Digər seçimlər</string>
|
||||
<string name="abc_action_mode_done">Hazırdır</string>
|
||||
<string name="abc_activity_chooser_view_see_all">Hamısına baxın</string>
|
||||
<string name="abc_activitychooserview_choose_application">Tətbiq seçin</string>
|
||||
<string name="abc_capital_off">DEAKTİV</string>
|
||||
<string name="abc_capital_on">AKTİV</string>
|
||||
<string name="abc_menu_alt_shortcut_label">Alt+</string>
|
||||
<string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
|
||||
<string name="abc_menu_delete_shortcut_label">silin</string>
|
||||
<string name="abc_menu_enter_shortcut_label">daxil olun</string>
|
||||
<string name="abc_menu_function_shortcut_label">Funksiya+</string>
|
||||
<string name="abc_menu_meta_shortcut_label">Meta+</string>
|
||||
<string name="abc_menu_shift_shortcut_label">Shift+</string>
|
||||
<string name="abc_menu_space_shortcut_label">space</string>
|
||||
<string name="abc_menu_sym_shortcut_label">Sym+</string>
|
||||
<string name="abc_prepend_shortcut_label">Menyu+</string>
|
||||
<string name="abc_search_hint">Axtarış...</string>
|
||||
<string name="abc_searchview_description_clear">Sorğunu silin</string>
|
||||
<string name="abc_searchview_description_query">Axtarış sorğusu</string>
|
||||
<string name="abc_searchview_description_search">Axtarın</string>
|
||||
<string name="abc_searchview_description_submit">Sorğunu göndərin</string>
|
||||
<string name="abc_searchview_description_voice">Səsli axtarış</string>
|
||||
<string name="abc_shareactionprovider_share_with">Paylaşın</string>
|
||||
<string name="abc_shareactionprovider_share_with_application">%s ilə paylaşın</string>
|
||||
<string name="abc_toolbar_collapse_description">Yığcamlaşdırın</string>
|
||||
<string name="nav_app_bar_navigate_up_description">Yuxarı keçin</string>
|
||||
<string name="nav_app_bar_open_drawer_description">Naviqasiya panelini açın</string>
|
||||
<string name="search_menu_title">Axtarın</string>
|
||||
<string name="status_bar_notification_info_overflow">999+</string>
|
||||
</resources>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user