Skip to content

Commit 27fe8f3

Browse files
committed
Code Review
1 parent 3e15256 commit 27fe8f3

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"whitelist-plugins-usages": true,
3-
"whitelist": [
4-
"org.nativescript*:*"
5-
]
2+
"whitelist-plugins-usages": true
63
}

demo/App_Resources/Android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
android:launchMode="singleTask">
2828

2929
<activity
30-
android:name="org.nativescript.MainActivity"
30+
android:name="org.nativescript.demo.MainActivity"
3131
android:label="@string/title_activity_kimera"
3232
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
3333
android:theme="@style/LaunchScreenTheme"

demo/app/activity.android.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import {
33
setActivityCallbacks,
44
AndroidActivityCallbacks,
55
} from "@nativescript/core";
6-
import { InAppBrowser } from "nativescript-inappbrowser";
6+
// import { InAppBrowser } from "nativescript-inappbrowser";
77

88
@NativeClass()
9-
@JavaProxy("org.nativescript.MainActivity")
9+
@JavaProxy("org.nativescript.demo.MainActivity")
1010
export class Activity extends androidx.appcompat.app.AppCompatActivity {
1111
public isNativeScriptActivity;
1212

@@ -49,7 +49,7 @@ export class Activity extends androidx.appcompat.app.AppCompatActivity {
4949
public onStart(): void {
5050
this._callbacks.onStart(this, super.onStart);
5151
// InAppBrowser initialization for CustomTabsServiceConnection
52-
InAppBrowser.onStart();
52+
// InAppBrowser.onStart();
5353
}
5454

5555
public onStop(): void {

0 commit comments

Comments
 (0)