The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
925B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0.0"
  3. package="com.yourcompany.oscreceiver">
  4. <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true"/>
  5. <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10"/>
  6. <uses-permission android:name="android.permission.INTERNET"/>
  7. <application android:label="@string/app_name">
  8. <activity android:name="OSCReceiver" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"
  9. android:screenOrientation="unspecified">
  10. <intent-filter>
  11. <action android:name="android.intent.action.MAIN"/>
  12. <category android:name="android.intent.category.LAUNCHER"/>
  13. </intent-filter>
  14. </activity>
  15. </application>
  16. </manifest>