migrating to the latest JUCE version
This commit is contained in:
		
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -1,7 +1,7 @@ | ||||
| apply plugin: 'com.android.application' | ||||
|  | ||||
| android { | ||||
|     compileSdkVersion 29 | ||||
|     compileSdkVersion 30 | ||||
|     externalNativeBuild { | ||||
|         cmake { | ||||
|             path "CMakeLists.txt" | ||||
| @@ -20,7 +20,7 @@ android { | ||||
|     defaultConfig { | ||||
|         applicationId "com.juce.networkgraphicsdemo" | ||||
|         minSdkVersion    16 | ||||
|         targetSdkVersion 29 | ||||
|         targetSdkVersion 30 | ||||
|         externalNativeBuild { | ||||
|             cmake { | ||||
|                 arguments "-DANDROID_TOOLCHAIN=clang", "-DANDROID_PLATFORM=android-16", "-DANDROID_STL=c++_static", "-DANDROID_CPP_FEATURES=exceptions rtti", "-DANDROID_ARM_MODE=arm", "-DANDROID_ARM_NEON=TRUE", "-DCMAKE_CXX_STANDARD=14", "-DCMAKE_CXX_EXTENSIONS=OFF" | ||||
| @@ -47,7 +47,7 @@ android { | ||||
|     productFlavors { | ||||
|         debug_ { | ||||
|             ndk { | ||||
|                 abiFilters "armeabi-v7a", "x86" | ||||
|                 abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" | ||||
|             } | ||||
|             externalNativeBuild { | ||||
|                 cmake { | ||||
|   | ||||
| @@ -1,11 +1,12 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
|  | ||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0.0" | ||||
|           package="com.juce.NetworkGraphicsDemo"> | ||||
|           package="com.juce.networkgraphicsdemo"> | ||||
|   <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" | ||||
|                     android:xlargeScreens="true"/> | ||||
|   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||||
|   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28"/> | ||||
|   <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | ||||
|   <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> | ||||
|   <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | ||||
|   <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> | ||||
|   <uses-permission android:name="android.permission.BLUETOOTH"/> | ||||
| @@ -14,7 +15,8 @@ | ||||
|   <uses-feature android:glEsVersion="0x00020000" android:required="true"/> | ||||
|   <application android:label="@string/app_name" android:name="com.rmsl.juce.JuceApp" android:icon="@drawable/icon" android:hardwareAccelerated="false"> | ||||
|     <activity android:name="com.rmsl.juce.JuceActivity" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation|screenSize" | ||||
|               android:screenOrientation="unspecified" android:launchMode="singleTask" android:hardwareAccelerated="true"> | ||||
|               android:screenOrientation="unspecified" android:launchMode="singleTask" android:hardwareAccelerated="true" | ||||
|               android:exported="true"> | ||||
|       <intent-filter> | ||||
|         <action android:name="android.intent.action.MAIN"/> | ||||
|         <category android:name="android.intent.category.LAUNCHER"/> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user