com.amanotes.gdk 0.2.66-1 → 0.2.66-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/Extra/AmaGDKInstaller.unitypackage +0 -0
- package/Extra/CheckDiskSpace.unitypackage +0 -0
- package/Extra/ForceUpdate.unitypackage +0 -0
- package/Extra/GoogleCMP.unitypackage +0 -0
- package/Extra/LegacyGDKUpdateHelper.unitypackage +0 -0
- package/Extra/PostProcessor.unitypackage +0 -0
- package/Packages/AmaGDKConfig.unitypackage +0 -0
- package/Packages/AmaGDKExample.unitypackage +0 -0
- package/Packages/AmaGDKTest.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.PurchaseConnector.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.unitypackage +0 -0
- package/Packages/FirebaseAnalyticsAdapter.unitypackage +0 -0
- package/Packages/FirebaseRemoteConfigAdapter.unitypackage +0 -0
- package/Packages/IronSourceAdapter.unitypackage +0 -0
- package/Packages/RevenueCatAdapter.unitypackage +0 -0
- package/Packages/SqliteAnalyticsAdapter.unitypackage +0 -0
- package/Runtime/AmaGDK.cs +2 -2
- package/Runtime/AudioToolkit/AmaGDK.Audio.cs +2 -0
- package/Runtime/GDKAudio/Plugins.meta +8 -0
- package/Runtime/GDKAudio.meta +8 -0
- package/Runtime/UI.meta +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/Runtime/AmaGDK.cs
CHANGED
|
@@ -17,7 +17,7 @@ namespace Amanotes.Core
|
|
|
17
17
|
{
|
|
18
18
|
public partial class AmaGDK : MonoBehaviour
|
|
19
19
|
{
|
|
20
|
-
public const string VERSION = "0.2.66";
|
|
20
|
+
public const string VERSION = "0.2.66-2";
|
|
21
21
|
|
|
22
22
|
internal static Status _status = Status.None;
|
|
23
23
|
private static ConfigAsset _config = null;
|
|
@@ -104,7 +104,7 @@ namespace Amanotes.Core
|
|
|
104
104
|
Ads.InitModule();
|
|
105
105
|
IAP.InitModule();
|
|
106
106
|
RemoteConfig.InitModule();
|
|
107
|
-
Audio.InitModule();
|
|
107
|
+
// Audio.InitModule();
|
|
108
108
|
}
|
|
109
109
|
Profiler.EndSample();
|
|
110
110
|
}
|
|
@@ -146,6 +146,8 @@ namespace Amanotes.Core
|
|
|
146
146
|
|
|
147
147
|
public static bool IsRecordingWithMicrophone()
|
|
148
148
|
{
|
|
149
|
+
if (_audioDeviceDetector == null) return false;
|
|
150
|
+
|
|
149
151
|
#if UNITY_IOS
|
|
150
152
|
string currentAudioInputs = GetCurrentRouteInputs();
|
|
151
153
|
return string.IsNullOrWhiteSpace(currentAudioInputs) == false;
|
package/Runtime/UI.meta
ADDED