fix failure to launch url intent on Android 12

This commit is contained in:
Eric House 2022-09-13 18:14:31 -07:00
parent edc9d34654
commit 3caa0f14e8

View file

@ -97,10 +97,8 @@ public class NetUtils {
// Requires a login, so only of use to me right now.... // Requires a login, so only of use to me right now....
String url = urlForGameID( context, gameID ); String url = urlForGameID( context, gameID );
Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( url ) ); Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( url ) );
if ( null != intent.resolveActivity( context.getPackageManager() ) ) {
context.startActivity( intent ); context.startActivity( intent );
} }
}
private static final String FORCE_HOST = null private static final String FORCE_HOST = null
// "eehouse.org" // "eehouse.org"