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.
1 parent 6c5b44f commit e601fb0Copy full SHA for e601fb0
Adjust/sdk-core/src/main/java/com/adjust/sdk/Util.java
@@ -165,7 +165,9 @@ protected String doInBackground(Context... params) {
165
166
@Override
167
protected void onPostExecute(String playAdiId) {
168
- onDeviceIdRead.onGoogleAdIdRead(playAdiId);
+ if (onDeviceIdRead != null) {
169
+ onDeviceIdRead.onGoogleAdIdRead(playAdiId);
170
+ }
171
}
172
}.execute(context);
173
0 commit comments