AndroidManifest.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="net.sourceforge.simcpux"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk android:minSdkVersion="4" />
  7. <uses-permission android:name="android.permission.INTERNET" />
  8. <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
  9. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  10. <application
  11. android:icon="@drawable/ic_launcher"
  12. android:label="@string/app_name" >
  13. <activity
  14. android:name=".wxapi.WXEntryActivity"
  15. android:label="@string/app_name"
  16. android:exported="true"
  17. android:launchMode="singleTop">
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20. <category android:name="android.intent.category.LAUNCHER" />
  21. </intent-filter>
  22. <intent-filter>
  23. <action android:name="android.intent.action.VIEW"/>
  24. <category android:name="android.intent.category.DEFAULT"/>
  25. <data android:scheme="sdksample"/>
  26. </intent-filter>
  27. </activity>
  28. <activity
  29. android:name=".SendToWXActivity"
  30. android:label="@string/app_name"
  31. android:theme="@style/MMTheme.Basic"/>
  32. <activity
  33. android:name=".GetFromWXActivity"
  34. android:label="@string/app_name"
  35. android:theme="@style/MMTheme.Basic"/>
  36. <activity
  37. android:name=".ShowFromWXActivity"
  38. android:label="@string/app_name"
  39. android:theme="@style/MMTheme.Basic"/>
  40. <receiver
  41. android:name=".AppRegister"
  42. android:permission="com.tencent.mm.plugin.permission.SEND" >
  43. <intent-filter>
  44. <action android:name="com.tencent.mm.plugin.openapi.Intent.ACTION_REFRESH_WXAPP" />
  45. </intent-filter>
  46. </receiver>
  47. </application>
  48. </manifest>