[M] move Applovin.Max & Appsflyer to Assets

This commit is contained in:
2024-08-08 17:54:20 +08:00
parent 4343d67794
commit e058996e29
164 changed files with 668 additions and 3604 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.DS_Store
bin
bin_BurstDebugInformation_DoNotShip
sdk-intergration/.vscode

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: b59b38cb2f793414ea9935846aa50ea0
guid: 7863556d88b814e09ba9cfc75a91d655
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -6,7 +6,8 @@ namespace AppsFlyerSDK
{
public class AppsFlyer : MonoBehaviour
{
public static readonly string kAppsFlyerPluginVersion = "6.14.5";
public static readonly string kAppsFlyerPluginVersion = "6.14.3";
public static string CallBackObjectName = null;
private static EventHandler onRequestResponse;
private static EventHandler onInAppResponse;

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" ?>
<dependencies>
<androidPackages>
<androidPackage spec="com.appsflyer:af-android-sdk:6.14.0">
</androidPackage>
<androidPackage spec="com.appsflyer:unity-wrapper:6.14.3">
</androidPackage>
<androidPackage spec="com.android.installreferrer:installreferrer:2.1">
</androidPackage>
</androidPackages>
<iosPods>
<iosPod name="AppsFlyerFramework" version="6.14.3" minTargetSdk="12.0">
</iosPod>
</iosPods>
</dependencies>

View File

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -48,7 +48,6 @@ static IMP __original_openUrl_Imp __unused;
}
[self swizzleContinueUserActivity:[self class]];
});
}

View File

@@ -101,3 +101,26 @@
@end
/**
Note if you would not like to use IMPL_APP_CONTROLLER_SUBCLASS you can replace it with the code below.
<code>
+(void)load
{
[AppsFlyerAppController plugin];
}
// Singleton accessor.
+ (AppsFlyerAppController *)plugin
{
static AppsFlyerAppController *sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [[AppsFlyerAppController alloc] init];
});
return sharedInstance;
}
</code>
**/

View File

@@ -18,7 +18,7 @@ extern "C" {
const void _startSDK(bool shouldCallback, const char* objectName) {
[[AppsFlyerLib shared] setPluginInfoWith: AFSDKPluginUnity
pluginVersion:@"6.14.5"
pluginVersion:@"6.14.3"
additionalParams:nil];
startRequestObjectName = stringFromChar(objectName);
AppsFlyeriOSWarpper.didCallStart = YES;

Some files were not shown because too many files have changed in this diff Show More