-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
82cf343
commit 1433905
Showing
41 changed files
with
1,108 additions
and
59 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,4 +1,5 @@ | ||
[App] | ||
Versao=1.0.1 | ||
[Download] | ||
Link=http://www.soachoaki.com.br/Content/download/DemoDelphiAutoUpdate.zip | ||
Link=http://www.soachoaki.com.br/Content/download/DemoDelphiAutoUpdate.zip | ||
MD5=3A381466CB0BB1E16CD5652EF8F7692E |
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
63 changes: 63 additions & 0 deletions
63
DelphiAutoUpdate/DemoAtualizacao/Android/Release/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,63 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- BEGIN_INCLUDE(manifest) --> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.embarcadero.DemoDelphiAutoUpdate" | ||
android:versionCode="2" | ||
android:versionName="1.0.1" | ||
android:installLocation="auto"> | ||
|
||
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" /> | ||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> | ||
<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_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"/> | ||
<application android:persistent="False" | ||
android:restoreAnyVersion="False" | ||
android:label="DemoDelphiAutoUpdate" | ||
android:debuggable="True" | ||
android:largeHeap="False" | ||
android:icon="@drawable/ic_launcher" | ||
android:theme="@style/AppTheme" | ||
android:hardwareAccelerated="true" | ||
android:resizeableActivity="false" | ||
android:usesCleartextTraffic="true"> | ||
|
||
<provider | ||
android:name="android.support.v4.content.FileProvider" | ||
android:authorities="com.embarcadero.DemoDelphiAutoUpdate.fileprovider" | ||
android:exported="false" | ||
android:grantUriPermissions="true"> | ||
<meta-data | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/provider_paths" /> | ||
</provider> | ||
|
||
|
||
|
||
<!-- 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="DemoDelphiAutoUpdate" | ||
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="DemoDelphiAutoUpdate" /> | ||
<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) --> |
Oops, something went wrong.