Is there any way to open Google Play store app directly from my app and search a package that I need to pass from my app?
            Asked
            
        
        
            Active
            
        
            Viewed 150 times
        
    1 Answers
2
            launchIntent = new Intent(Intent.ACTION_VIEW);
launchIntent.setData(Uri.parse("market://details?id=" + packageName));
startActivity(launchIntent);
 
    
    
        nizammoidu
        
- 2,074
- 1
- 14
- 14
