Testing Android Android Applications

I am developing an Android Instant App for my published application. However, the published version of my installable application does not include the required URLs in the application manifest file. Before releasing my application, I want to add the URLs to the application manifest file and see how it works when the user submits the URL that I define for the Instant App. Any way to test this scenario without updating my application?

I mean a way to test Instant App without launching a url, but through a user script?

Note. I uploaded the necessary JSON files to my web server, however, since my installation application did not include URLs, it did not release it. But the test url verifies that it has been successfully linked to my site.

+4
source share
2 answers

You can test the InstantApp process by loading the APK into the googlePlay beta environment (and add yourself as a tester).

You can test the functionality of your application (working as an instant application) by adding the correct start / debug configurations and adding the necessary parameters in accordance with this guide:

you need to use app links assistantin "Tools" → "Application Link Agents"

, , pathPrefix.

OnCreate ( ) :

Intent appLinkIntent = getIntent();
String appLinkAction = appLinkIntent.getAction();
Uri appLinkData = appLinkIntent.getData();
// then use appLinkData.getQueryParameter("YourParameter")

, editConfigurations. instantApp (, ), URL URL. ?Param1=1&Param2=two ( ).

+1

Google Play, APK ?

Google Play , "" Google Play.

. .

+2

Source: https://habr.com/ru/post/1679742/


All Articles