Advertisement
NubeColectiva

Cargar Una Determinada Actividad Por Defecto en Android

Jan 8th, 2023 (edited)
2,078
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.07 KB | Software | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="com.example.detectarconexionandroidkotlin">
  4.  
  5.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  6.     <uses-permission android:name="android.permission.INTERNET"/>
  7.  
  8.     <application
  9.        android:allowBackup="true"
  10.        android:icon="@mipmap/ic_launcher"
  11.        android:label="@string/app_name"
  12.        android:roundIcon="@mipmap/ic_launcher_round"
  13.        android:supportsRtl="true"
  14.        android:theme="@style/Theme.DetectarConexionAndroidKotlin">
  15.         <activity
  16.            android:name=".MainActivity"
  17.            android:exported="true">
  18.             <intent-filter>
  19.                 <action android:name="android.intent.action.MAIN" />
  20.  
  21.                 <category android:name="android.intent.category.LAUNCHER" />
  22.             </intent-filter>
  23.         </activity>
  24.         <activity
  25.            android:name=".Saludo"
  26.            android:exported="true">
  27.         </activity>
  28.  
  29.     </application>
  30.  
  31. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement