1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Re-structured the low-level Android native code

Please see the forum post "Re-structuring of JUCE’s low-level Android code" and the BREAKING-CHANGES.txt for more information.
This commit is contained in:
hogliux 2018-11-13 12:33:40 +00:00
parent 463f5ea5b0
commit 008b7a9ab2
75 changed files with 7812 additions and 7376 deletions

View file

@ -83,11 +83,21 @@ android {
}
}
repositories {
}
sourceSets {
main.java.srcDirs +=
["../../../../../modules/juce_audio_devices/native/java",
"../../../../../modules/juce_core/native/java",
"../../../../../modules/juce_gui_basics/native/java",
"../../../../../modules/juce_gui_extra/native/java",
"../../../../../modules/juce_opengl/native/java",
"../../../../../modules/juce_video/native/java"]
}
dependencies {
}
repositories {
}
dependencies {
}
}

View file

@ -12,15 +12,15 @@
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature android:glEsVersion="0x00030000" android:required="true"/>
<application android:label="@string/app_name" android:icon="@drawable/icon" android:hardwareAccelerated="false">
<activity android:name="DemoRunner" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation|screenSize"
<application android:label="@string/app_name" android:name="com.roli.juce.JuceApp" android:icon="@drawable/icon" android:hardwareAccelerated="false">
<activity android:name="android.app.Activity" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="unspecified" android:launchMode="singleTask" android:hardwareAccelerated="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<provider android:name="com.juce.demorunner.SharingContentProvider" android:authorities="com.juce.demorunner.sharingcontentprovider"
<provider android:name="com.roli.juce.JuceSharingContentProvider" android:authorities="com.juce.demorunner.sharingcontentprovider"
android:grantUriPermissions="true" android:exported="false"/>
</application>
</manifest>