Skip to content

Commit 724e552

Browse files
committed
refac: clean up unused methods from the api
1 parent 163da95 commit 724e552

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

Assets/Adjust/Scripts/Adjust.cs

-32
Original file line numberDiff line numberDiff line change
@@ -171,38 +171,6 @@ public static void Disable()
171171
#endif
172172
}
173173

174-
public static void EnablePlayStoreKidsApp()
175-
{
176-
if (IsEditor())
177-
{
178-
return;
179-
}
180-
181-
#if UNITY_IOS
182-
Debug.Log("[Adjust]: Marking apps as Play Store kids app is only supported for Android platform.");
183-
#elif UNITY_ANDROID
184-
AdjustAndroid.EnablePlayStoreKidsApp();
185-
#else
186-
Debug.Log(errorMsgPlatform);
187-
#endif
188-
}
189-
190-
public static void DisablePlayStoreKidsApp()
191-
{
192-
if (IsEditor())
193-
{
194-
return;
195-
}
196-
197-
#if UNITY_IOS
198-
Debug.Log("[Adjust]: Marking apps as Play Store kids app is only supported for Android platform.");
199-
#elif UNITY_ANDROID
200-
AdjustAndroid.DisablePlayStoreKidsApp();
201-
#else
202-
Debug.Log(errorMsgPlatform);
203-
#endif
204-
}
205-
206174
public static void IsEnabled(Action<bool> callback)
207175
{
208176
if (IsEditor())

0 commit comments

Comments
 (0)