parent
8b0e86a5f3
commit
91b0ba0346
|
|
@ -1,5 +1,7 @@
|
||||||
org.gradle.jvmargs=-Xmx**JVM_HEAP_SIZE**M
|
org.gradle.jvmargs=-Xmx**JVM_HEAP_SIZE**M
|
||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
|
org.gradle.daemon=true
|
||||||
|
org.gradle.caching=true
|
||||||
android.enableR8=**MINIFY_WITH_R_EIGHT**
|
android.enableR8=**MINIFY_WITH_R_EIGHT**
|
||||||
unityStreamingAssets=**STREAMING_ASSETS**
|
unityStreamingAssets=**STREAMING_ASSETS**
|
||||||
# Android Resolver Properties Start
|
# Android Resolver Properties Start
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,11 @@ android {
|
||||||
abortOnError false
|
abortOnError false
|
||||||
checkReleaseBuilds false
|
checkReleaseBuilds false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dexOptions {
|
||||||
|
incremental true
|
||||||
|
javaMaxHeapSize "8g"
|
||||||
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
debug {
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ namespace Guru
|
||||||
bool autoLoadAds = true,
|
bool autoLoadAds = true,
|
||||||
bool iapEnabled = true,
|
bool iapEnabled = true,
|
||||||
bool autoRecordFinishedLevels = true,
|
bool autoRecordFinishedLevels = true,
|
||||||
bool showDebugLog = false,
|
bool debugMode = false,
|
||||||
Dictionary<string, object> defaultRemoteData = null,
|
Dictionary<string, object> defaultRemoteData = null,
|
||||||
byte[] googleKeys = null,
|
byte[] googleKeys = null,
|
||||||
byte[] appleRootCerts = null)
|
byte[] appleRootCerts = null)
|
||||||
|
|
@ -62,7 +62,7 @@ namespace Guru
|
||||||
AutoLoadWhenAdsReady = autoLoadAds,
|
AutoLoadWhenAdsReady = autoLoadAds,
|
||||||
IAPEnabled = iapEnabled,
|
IAPEnabled = iapEnabled,
|
||||||
AutoRecordFinishedLevels = autoRecordFinishedLevels,
|
AutoRecordFinishedLevels = autoRecordFinishedLevels,
|
||||||
DebugMode = showDebugLog,
|
DebugMode = debugMode,
|
||||||
GoogleKeys = googleKeys,
|
GoogleKeys = googleKeys,
|
||||||
AppleRootCerts = appleRootCerts,
|
AppleRootCerts = appleRootCerts,
|
||||||
DefaultRemoteData = defaultRemoteData ?? new Dictionary<string, object>(),
|
DefaultRemoteData = defaultRemoteData ?? new Dictionary<string, object>(),
|
||||||
|
|
|
||||||
|
|
@ -85,13 +85,13 @@ namespace Guru
|
||||||
bool autoLoadAds = true,
|
bool autoLoadAds = true,
|
||||||
bool iapEnabled = true,
|
bool iapEnabled = true,
|
||||||
bool autoRecordFinishedLevels = true,
|
bool autoRecordFinishedLevels = true,
|
||||||
bool showDebugLog = false,
|
bool debugMode = false,
|
||||||
Dictionary<string, object> defaultRemoteData = null,
|
Dictionary<string, object> defaultRemoteData = null,
|
||||||
byte[] googleKeys = null,
|
byte[] googleKeys = null,
|
||||||
byte[] appleRootCerts = null)
|
byte[] appleRootCerts = null)
|
||||||
{
|
{
|
||||||
var config = GuruSDKInitConfig.Build(useCustomConsent, autoLoadAds, iapEnabled,
|
var config = GuruSDKInitConfig.Build(useCustomConsent, autoLoadAds, iapEnabled,
|
||||||
autoRecordFinishedLevels, showDebugLog, defaultRemoteData, googleKeys, appleRootCerts);
|
autoRecordFinishedLevels, debugMode, defaultRemoteData, googleKeys, appleRootCerts);
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue