We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4851b0 + 74201c0 commit f6c331bCopy full SHA for f6c331b
build.gradle
@@ -5,7 +5,7 @@ apply plugin: 'signing'
5
6
7
group 'com.backendless'
8
-version '5.2.3'
+version '5.2.4'
9
archivesBaseName='backendless'
10
11
src/com/backendless/AndroidBackendlessPrefs.java
@@ -115,6 +115,9 @@ private synchronized AuthKeys getAuthKeys()
115
if( authKeys == null )
116
restoreAuthKeysFromPreferences();
117
118
+ if (authKeys == null)
119
+ throw new IllegalStateException( ExceptionMessage.NOT_INITIALIZED );
120
+
121
return authKeys;
122
}
123
0 commit comments