Skip to content
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

Closed
enchev opened this issue Sep 11, 2015 · 5 comments
Closed

Additional Intents Crashes app #218

enchev opened this issue Sep 11, 2015 · 5 comments
Assignees
Labels

Comments

@enchev
Copy link

enchev commented Sep 11, 2015

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

@enchev
Copy link
Author

enchev commented Sep 11, 2015

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?

@enchev
Copy link
Author

enchev commented Sep 11, 2015

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.

@iandea
Copy link

iandea commented Nov 27, 2015

@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

@slavchev
Copy link

slavchev commented Dec 3, 2015

ping @hshristov

Will this help?

@Plamen5kov
Copy link
Contributor

Adding additional intents will be possible with v2.0 of the android-ruintime.
You can see a demo here
run:

git clone https://github.com/pkoleva/sbg-test-app.git
cd sbg-test-app/
tns platform add android@next // this will install the latest runtime from master

after you run the app you should see in the console:

JS: com.tns.NativeScriptApplication@94533ec
JS: Intent { cmp=org.nativescript.sbgtestapp/a.b.MyJavaClass }
JS: function startActivity() { [native code] }
JS: ------we got called from onCreate

Look at files:

  • app/App_Resources/Android/AndroidManifest.xml declaring:
    • <activity android:name="a.b.MyJavaClass" />
  • app/my-custom-class.js (activity)
  • app/main-page.js (navigating to declared activity)

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants