-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from adrianosantostreina/develop
Develop
- Loading branch information
Showing
86 changed files
with
2,850 additions
and
281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- BEGIN_INCLUDE(manifest) --> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.embarcadero.NewDemo" | ||
android:versionCode="1" | ||
android:versionName="1.0.0" | ||
android:installLocation="auto"> | ||
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="32" /> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.CALL_COMPANION_APP" /> | ||
<uses-permission android:name="android.permission.CALL_PHONE" /> | ||
<uses-permission android:name="android.permission.CAMERA" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.READ_PHONE_STATE" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
|
||
<uses-feature android:glEsVersion="0x00020000" android:required="true"/> | ||
<queries> | ||
|
||
</queries> | ||
<application | ||
android:persistent="False" | ||
android:restoreAnyVersion="False" | ||
android:label="NewDemo" | ||
android:debuggable="true" | ||
android:largeHeap="False" | ||
android:icon="@drawable/ic_launcher" | ||
android:theme="@style/AppTheme" | ||
android:hardwareAccelerated="true" | ||
android:resizeableActivity="false" | ||
android:requestLegacyExternalStorage="true"> | ||
|
||
|
||
|
||
|
||
<!-- Our activity is a subclass of the built-in NativeActivity framework class. | ||
This will take care of integrating with our NDK code. --> | ||
<activity | ||
android:name="com.embarcadero.firemonkey.FMXNativeActivity" | ||
android:exported="true" | ||
android:label="NewDemo" | ||
android:configChanges="orientation|keyboard|keyboardHidden|screenSize" | ||
android:launchMode="singleTask"> | ||
<!-- Tell NativeActivity the name of our .so --> | ||
<meta-data android:name="android.app.lib_name" android:value="NewDemo" /> | ||
|
||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<receiver android:name="com.embarcadero.rtl.notifications.NotificationAlarm" /> | ||
|
||
</application> | ||
</manifest> | ||
<!-- END_INCLUDE(manifest) --> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.99 KB
Demos/New Demo/Android/Debug/MobilePermissions.Permissions.Interfaces.o
Binary file not shown.
Binary file added
BIN
+191 KB
Demos/New Demo/Android/Debug/MobilePermissions.UsesPermissions.FMX.Base.o
Binary file not shown.
Binary file added
BIN
+232 KB
Demos/New Demo/Android/Debug/MobilePermissions.UsesPermissions.FMX.Dangerous.o
Binary file not shown.
Binary file added
BIN
+208 KB
Demos/New Demo/Android/Debug/MobilePermissions.UsesPermissions.FMX.Signature.o
Binary file not shown.
Binary file added
BIN
+275 KB
Demos/New Demo/Android/Debug/MobilePermissions.UsesPermissions.FMX.Standard.o
Binary file not shown.
Binary file added
BIN
+23.8 KB
Demos/New Demo/Android/Debug/MobilePermissions.UsesPermissions.Factory.o
Binary file not shown.
Binary file added
BIN
+9.46 KB
Demos/New Demo/Android/Debug/MobilePermissions.UsesPermissions.Interfaces.o
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- BEGIN_INCLUDE(manifest) --> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.embarcadero.NewDemo" | ||
android:versionCode="1" | ||
android:versionName="1.0.0" | ||
android:installLocation="auto"> | ||
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="32" /> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.CALL_COMPANION_APP" /> | ||
<uses-permission android:name="android.permission.CALL_PHONE" /> | ||
<uses-permission android:name="android.permission.CAMERA" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.READ_PHONE_STATE" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
|
||
<uses-feature android:glEsVersion="0x00020000" android:required="true"/> | ||
<queries> | ||
|
||
</queries> | ||
<application | ||
android:persistent="False" | ||
android:restoreAnyVersion="False" | ||
android:label="NewDemo" | ||
android:debuggable="true" | ||
android:largeHeap="False" | ||
android:icon="@drawable/ic_launcher" | ||
android:theme="@style/AppTheme" | ||
android:hardwareAccelerated="true" | ||
android:resizeableActivity="false" | ||
android:requestLegacyExternalStorage="true"> | ||
|
||
|
||
|
||
|
||
<!-- Our activity is a subclass of the built-in NativeActivity framework class. | ||
This will take care of integrating with our NDK code. --> | ||
<activity | ||
android:name="com.embarcadero.firemonkey.FMXNativeActivity" | ||
android:exported="true" | ||
android:label="NewDemo" | ||
android:configChanges="orientation|keyboard|keyboardHidden|screenSize" | ||
android:launchMode="singleTask"> | ||
<!-- Tell NativeActivity the name of our .so --> | ||
<meta-data android:name="android.app.lib_name" android:value="NewDemo" /> | ||
|
||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<receiver android:name="com.embarcadero.rtl.notifications.NotificationAlarm" /> | ||
|
||
</application> | ||
</manifest> | ||
<!-- END_INCLUDE(manifest) --> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+582 KB
Demos/New Demo/Android/Debug/NewDemo/library/lib/armeabi-v7a/gdbserver
Binary file not shown.
Binary file added
BIN
+19.3 MB
Demos/New Demo/Android/Debug/NewDemo/library/lib/armeabi-v7a/libNewDemo.so
Binary file not shown.
Binary file added
BIN
+25.1 KB
Demos/New Demo/Android/Debug/NewDemo/library/lib/armeabi/libNewDemo.so
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.02 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.89 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-hdpi/ic_notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.65 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-large/splash_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.22 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-ldpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.09 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.6 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-mdpi/ic_notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.02 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-normal/splash_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.83 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-small/splash_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.36 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.27 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-xhdpi/ic_notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+11 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-xlarge/splash_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.05 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.95 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-xxhdpi/ic_notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.66 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-xxxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.64 KB
Demos/New Demo/Android/Debug/NewDemo/res/drawable-xxxhdpi/ic_notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions
13
Demos/New Demo/Android/Debug/NewDemo/res/drawable/splash_image_def.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:opacity="opaque"> | ||
<item android:drawable="@android:color/black" /> | ||
<item> | ||
<bitmap | ||
android:src="@drawable/splash_image" | ||
android:antialias="true" | ||
android:dither="true" | ||
android:filter="true" | ||
android:gravity="center" | ||
android:tileMode="disabled"/> | ||
</item> | ||
</layer-list> |
6 changes: 6 additions & 0 deletions
6
Demos/New Demo/Android/Debug/NewDemo/res/values-v21/styles.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<style name="AppTheme" parent="@android:style/Theme.Material.Light.NoActionBar"> | ||
<item name="android:windowBackground">@drawable/splash_image_def</item> | ||
<item name="android:windowClipToOutline">false</item> | ||
</style> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<color name="notification_accent_color">#000000</color> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<style name="AppTheme" parent="@android:style/Theme.NoTitleBar"> | ||
<item name="android:windowBackground">@drawable/splash_image_def</item> | ||
<item name="android:windowNoTitle">true</item> | ||
</style> | ||
</resources> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<color name="notification_accent_color">#000000</color> | ||
</resources> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:opacity="opaque"> | ||
<item android:drawable="@android:color/black" /> | ||
<item> | ||
<bitmap | ||
android:src="@drawable/splash_image" | ||
android:antialias="true" | ||
android:dither="true" | ||
android:filter="true" | ||
android:gravity="center" | ||
android:tileMode="disabled"/> | ||
</item> | ||
</layer-list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<style name="AppTheme" parent="@android:style/Theme.Material.Light.NoActionBar"> | ||
<item name="android:windowBackground">@drawable/splash_image_def</item> | ||
<item name="android:windowClipToOutline">false</item> | ||
</style> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<style name="AppTheme" parent="@android:style/Theme.NoTitleBar"> | ||
<item name="android:windowBackground">@drawable/splash_image_def</item> | ||
<item name="android:windowNoTitle">true</item> | ||
</style> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- BEGIN_INCLUDE(manifest) --> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="%package%" | ||
android:versionCode="%versionCode%" | ||
android:versionName="%versionName%" | ||
android:installLocation="%installLocation%"> | ||
<uses-sdk android:minSdkVersion="%minSdkVersion%" android:targetSdkVersion="%targetSdkVersion%" /> | ||
<%uses-permission%> | ||
<uses-feature android:glEsVersion="0x00020000" android:required="true"/> | ||
<queries> | ||
<%queries-child-elements%> | ||
</queries> | ||
<application | ||
android:persistent="%persistent%" | ||
android:restoreAnyVersion="%restoreAnyVersion%" | ||
android:label="%label%" | ||
android:debuggable="%debuggable%" | ||
android:largeHeap="%largeHeap%" | ||
android:icon="%icon%" | ||
android:theme="%theme%" | ||
android:hardwareAccelerated="%hardwareAccelerated%" | ||
android:resizeableActivity="false" | ||
android:requestLegacyExternalStorage="true"> | ||
<%provider%> | ||
<%application-meta-data%> | ||
<%uses-libraries%> | ||
<%services%> | ||
<!-- Our activity is a subclass of the built-in NativeActivity framework class. | ||
This will take care of integrating with our NDK code. --> | ||
<activity | ||
android:name="com.embarcadero.firemonkey.FMXNativeActivity" | ||
android:exported="true" | ||
android:label="%activityLabel%" | ||
android:configChanges="orientation|keyboard|keyboardHidden|screenSize" | ||
android:launchMode="singleTask"> | ||
<!-- Tell NativeActivity the name of our .so --> | ||
<meta-data android:name="android.app.lib_name" android:value="%libNameValue%" /> | ||
|
||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<%activity%> | ||
<%receivers%> | ||
</application> | ||
</manifest> | ||
<!-- END_INCLUDE(manifest) --> |
Oops, something went wrong.