-
-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Additional Intents Crashes app #218
Comments
From @slavchev on August 28, 2015 12:41 Hi @NathanaelA, Is this issue still actual? If so, can you provide more details how to reproduce it? |
From @NathanaelA on August 28, 2015 18:14 @slavchev -- Don't know. Haven't tested it since back in may. Was changes done that should fix this issue. |
@enchev: I can replicate the issue in 1.5. I'm trying to have the app open with a custom file extension, and I added the following intent filter to AndroidManifest.xml: <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
<data android:host="*" />
<data android:pathPattern=".*\\.myextension" />
</intent-filter> The code that blows up the app is line 633 in frame.android.ts |
ping @hshristov Will this help? |
Adding additional intents will be possible with v2.0 of the android-ruintime.
after you run the app you should see in the console:
Look at files:
|
From @NathanaelA on May 26, 2015 8:53
If I add an additional Intent to the AndroidManifest.xml; then when it is triggered; the code in tns_module/ui/frrame/frame.android.js in the function AndroidFrame.prototype.onActivityRequested is triggered which throws and error and crashes the app. I tried several ways to see if I could make this work; but it appears it doesn't allow me to add any additional intents.
Is their any way to have additional Activities triggered and either go to the same screen or do a different screen?
Copied from original issue: NativeScript/NativeScript#218
The text was updated successfully, but these errors were encountered: