mirror of
https://github.com/KeymonSoft/DBCheck.git
synced 2026-04-17 19:37:09 +00:00
103 lines
3.2 KiB
Plaintext
103 lines
3.2 KiB
Plaintext
Build1=Default,dbcheck.keymon.lat,HU2_PUBLIC
|
|
File1=engrane_gris.png
|
|
File2=listItem.bal
|
|
File3=MainPage.bal
|
|
FileGroup1=Default Group
|
|
FileGroup2=Default Group
|
|
FileGroup3=Default Group
|
|
Group=Default Group
|
|
Library1=b4xpages
|
|
Library10=fileprovider
|
|
Library2=byteconverter
|
|
Library3=contentresolver
|
|
Library4=core
|
|
Library5=ime
|
|
Library6=okhttputils2
|
|
Library7=randomaccessfile
|
|
Library8=sql
|
|
Library9=xcustomlistview
|
|
ManifestCode='This code will be applied to the manifest file during compilation.~\n~'You do not need to modify it in most cases.~\n~'See this link for for more information: https://www.b4x.com/forum/showthread.php?p=78136~\n~AddManifestText(~\n~<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="31"/>~\n~<supports-screens android:largeScreens="true" ~\n~ android:normalScreens="true" ~\n~ android:smallScreens="true" ~\n~ android:anyDensity="true"/>)~\n~SetApplicationAttribute(android:icon, "@drawable/icon")~\n~SetApplicationAttribute(android:label, "$LABEL$")~\n~CreateResourceFromFile(Macro, Themes.LightTheme)~\n~'End of default text.~\n~~\n~SetApplicationAttribute(android:usesCleartextTraffic, "true")~\n~AddPermission(android.permission.INTERNET)~\n~AddPermission(android.permission.READ_EXTERNAL_STORAGE)~\n~AddPermission(android.permission.WRITE_EXTERNAL_STORAGE)~\n~SetApplicationAttribute(android:allowBackup, "false")~\n~~\n~AddActivityText(main,~\n~<intent-filter>~\n~<action android:name="android.intent.action.VIEW" />~\n~<category android:name="android.intent.category.DEFAULT" />~\n~<data android:mimeType="application/octet-stream" />~\n~</intent-filter>)
|
|
Module1=B4XMainPage
|
|
Module2=C_Envios
|
|
Module3=DBRequestManager
|
|
Module4=FileHandler
|
|
Module5=Starter
|
|
Module6=Subs
|
|
NumberOfFiles=3
|
|
NumberOfLibraries=10
|
|
NumberOfModules=6
|
|
Version=12.5
|
|
@EndOfDesignText@
|
|
#Region Project Attributes
|
|
#ApplicationLabel: DBCheck
|
|
#VersionCode: 1
|
|
#VersionName: 3.11.06
|
|
'SupportedOrientations possible values: unspecified, landscape or portrait.
|
|
#SupportedOrientations: portrait
|
|
#CanInstallToExternalStorage: False
|
|
#End Region
|
|
|
|
#Region Activity Attributes
|
|
#FullScreen: False
|
|
#IncludeTitle: True
|
|
#End Region
|
|
|
|
'#BridgeLogger: True
|
|
|
|
Sub Process_Globals
|
|
Public ActionBarHomeClicked As Boolean
|
|
|
|
'linea de prueba
|
|
|
|
End Sub
|
|
|
|
Sub Globals
|
|
|
|
End Sub
|
|
|
|
Sub Activity_Create(FirstTime As Boolean)
|
|
Dim pm As B4XPagesManager
|
|
pm.Initialize(Activity)
|
|
End Sub
|
|
|
|
'Template version: B4A-1.01
|
|
#Region Delegates
|
|
|
|
Sub Activity_ActionBarHomeClick
|
|
ActionBarHomeClicked = True
|
|
B4XPages.Delegate.Activity_ActionBarHomeClick
|
|
ActionBarHomeClicked = False
|
|
End Sub
|
|
|
|
Sub Activity_KeyPress (KeyCode As Int) As Boolean
|
|
Return B4XPages.Delegate.Activity_KeyPress(KeyCode)
|
|
End Sub
|
|
|
|
Sub Activity_Resume
|
|
B4XPages.Delegate.Activity_Resume
|
|
End Sub
|
|
|
|
Sub Activity_Pause (UserClosed As Boolean)
|
|
B4XPages.Delegate.Activity_Pause
|
|
End Sub
|
|
|
|
Sub Activity_PermissionResult (Permission As String, Result As Boolean)
|
|
B4XPages.Delegate.Activity_PermissionResult(Permission, Result)
|
|
End Sub
|
|
|
|
Sub Create_Menu (Menu As Object)
|
|
B4XPages.Delegate.Create_Menu(Menu)
|
|
End Sub
|
|
|
|
#if Java
|
|
public boolean _onCreateOptionsMenu(android.view.Menu menu) {
|
|
processBA.raiseEvent(null, "create_menu", menu);
|
|
return true;
|
|
|
|
}
|
|
#End If
|
|
#End Region
|
|
|
|
'Program code should go into B4XMainPage and other pages.
|
|
|