-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a3bef8
commit e7f2608
Showing
10 changed files
with
597 additions
and
409 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 |
---|---|---|
@@ -1 +1 @@ | ||
09/01/2019 9:28:42 | ||
13/04/2019 11:02:52 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
VERSION 1_3_1 | ||
BUILD DATETIME 2019-01-09T09:28:42.304694 | ||
VERSION v1.3.2 | ||
BUILD DATETIME 2019-04-13T11:02:52.318668 |
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
54 changes: 54 additions & 0 deletions
54
samples/110_rest_appender_mobile/Android/Debug/AndroidManifest.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,54 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- BEGIN_INCLUDE(manifest) --> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.embarcadero.RESTAppenderMobileSample" | ||
android:versionCode="1" | ||
android:versionName="1.0.0" | ||
android:installLocation="auto"> | ||
|
||
<!-- This is the platform API where NativeActivity was introduced. --> | ||
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" /> | ||
<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_PHONE" /> | ||
<uses-permission android:name="android.permission.CAMERA" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.READ_CALENDAR" /> | ||
<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_CALENDAR" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
|
||
<uses-feature android:glEsVersion="0x00020000" android:required="True"/> | ||
<application android:persistent="False" | ||
android:usesCleartextTraffic="true" | ||
android:restoreAnyVersion="False" | ||
android:label="RESTAppenderMobileSample" | ||
android:debuggable="True" | ||
android:largeHeap="False" | ||
android:icon="@drawable/ic_launcher" | ||
android:theme="@style/AppTheme" | ||
android:hardwareAccelerated="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:label="RESTAppenderMobileSample" | ||
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="RESTAppenderMobileSample" /> | ||
<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) --> |
2 changes: 1 addition & 1 deletion
2
..._with_redis/RemoteRedisAppenderSample.dpr → ...ogging_with_redis/REDISAppenderSample.dpr
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
program RemoteRedisAppenderSample; | ||
program REDISAppenderSample; | ||
|
||
uses | ||
Vcl.Forms, | ||
|
452 changes: 254 additions & 198 deletions
452
...ith_redis/RemoteRedisAppenderSample.dproj → ...ging_with_redis/REDISAppenderSample.dproj
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
samples/90_remote_logging_with_redis/redis_logs_viewer/RedisLogsViewer.dpr
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
program RedisLogsViewer; | ||
program REDISLogsViewer; | ||
|
||
uses | ||
Vcl.Forms, | ||
|
454 changes: 254 additions & 200 deletions
454
samples/90_remote_logging_with_redis/redis_logs_viewer/RedisLogsViewer.dproj
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file modified
BIN
+308 Bytes
(100%)
samples/90_remote_logging_with_redis/redis_logs_viewer/RedisLogsViewer.res
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