File tree 3 files changed +8
-3
lines changed
SimpleWeather.Weather-API/Keys
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public App()
61
61
62
62
#if ! MACCATALYST
63
63
AppCenter . LogLevel = AppCenterLogLevel . Verbose ;
64
- AppCenter . Start ( APIKeys . GetAppCenterSecret ( ) , typeof ( Analytics ) , typeof ( Crashes ) ) ;
64
+ AppCenter . Start ( $ "ios= { APIKeys . GetiOSAppCenterSecret ( ) } " , typeof ( Analytics ) , typeof ( Crashes ) ) ;
65
65
#endif
66
66
67
67
// Initialize depencies for library
Original file line number Diff line number Diff line change @@ -24,7 +24,12 @@ public static String GetAQICNKey()
24
24
return null ;
25
25
}
26
26
27
- public static String GetAppCenterSecret ( )
27
+ public static String GetUWPAppCenterSecret ( )
28
+ {
29
+ return null ;
30
+ }
31
+
32
+ public static String GetiOSAppCenterSecret ( )
28
33
{
29
34
return null ;
30
35
}
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ public App()
107
107
MemoryManager . AppMemoryUsageIncreased += MemoryManager_AppMemoryUsageIncreased ;
108
108
109
109
AppCenter . LogLevel = AppCenterLogLevel . Verbose ;
110
- AppCenter . Start ( APIKeys . GetAppCenterSecret ( ) , typeof ( Analytics ) , typeof ( Crashes ) ) ;
110
+ AppCenter . Start ( APIKeys . GetUWPAppCenterSecret ( ) , typeof ( Analytics ) , typeof ( Crashes ) ) ;
111
111
112
112
// Initialize depencies for library
113
113
InitializeDependencies ( ) ;
You can’t perform that action at this time.
0 commit comments