We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9dc10e commit f06fdd1Copy full SHA for f06fdd1
1 file changed
android/src/main/java/com/auth0/react/A0Auth0Module.java
@@ -85,8 +85,9 @@ public A0Auth0Module(ReactApplicationContext reactContext) {
85
}
86
87
@ReactMethod
88
- public String getBundleIdentifier() {
89
- return reactContext.getApplicationInfo().packageName;
+ public void getBundleIdentifier(Promise promise) {
+ String packageName = reactContext.getApplicationInfo().packageName;
90
+ promise.resolve(packageName);
91
92
93
0 commit comments