Skip to content

Commit

Permalink
Migrate to AndroidX
Browse files Browse the repository at this point in the history
`android.support` is now deprecated
https://developer.android.com/jetpack/androidx

Changes tracked in
e-mission/e-mission-docs#554 (comment)
  • Loading branch information
shankari committed Jul 17, 2020
1 parent 62aa573 commit 43bcaa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/android/TransitionNotificationReceiver.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import android.content.IntentFilter;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.content.LocalBroadcastManager;
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
import android.webkit.ValueCallback;

import org.apache.cordova.CordovaPlugin;
Expand Down
2 changes: 1 addition & 1 deletion src/android/TransitionNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import android.content.IntentFilter;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.content.LocalBroadcastManager;
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
import android.webkit.ValueCallback;

import org.apache.cordova.CordovaPlugin;
Expand Down

0 comments on commit 43bcaa7

Please sign in to comment.