26/9/23 - Commit inicial.

This commit is contained in:
2023-09-26 04:27:09 -06:00
parent 9955ef26ea
commit 1e9f3958e5
5 changed files with 153 additions and 25 deletions

View File

@@ -1,19 +1,27 @@
Build1=Default,b4a.example
File1=Layout.bal
Build1=Default,kms_helperSubs.keymon.lat
File1=kmt.db
File2=main.bal
File3=manifest.txt
FileGroup1=Default Group
FileGroup2=Default Group
FileGroup3=Default Group
Group=Default Group
Library1=core
Library2=xui
Library3=sql
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="21" android:targetSdkVersion="33"/>~\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~
Library2=javaobject
Library3=phone
Library4=sql
Library5=xui
Library6=runtimepermissions
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="21" android:targetSdkVersion="33"/>~\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~AddPermission("android.permission.MANAGE_EXTERNAL_STORAGE")~\n~SetApplicationAttribute(android:allowBackup, "false")
Module1=kms_helperSubs
NumberOfFiles=1
NumberOfLibraries=3
NumberOfModules=1
Module2=ManageExternalStorage
NumberOfFiles=3
NumberOfLibraries=6
NumberOfModules=2
Version=12.5
@EndOfDesignText@
#Region Project Attributes
#ApplicationLabel: B4A Example
#ApplicationLabel: kms_helpeSubs
#VersionCode: 1
#VersionName:
'SupportedOrientations possible values: unspecified, landscape or portrait.
@@ -27,7 +35,7 @@ Version=12.5
'Ctrl + click ide://run?file=%WINDIR%\System32\WindowsPowerShell\v1.0\powershell.exe&Args=github&Args=..\..\
'###########################################################################################################
'###################### PUSH TORTOISE GIT #########################################################
'Ctrl + click ide://run?file=%WINDIR%\System32\WindowsPowerShell\v1.0\powershell.exe&Args=TortoiseGitProc&Args=/command:commit&Args=/path:"./../../"&Args=/closeonend:2
'Ctrl + click ide://run?file=%WINDIR%\System32\WindowsPowerShell\v1.0\powershell.exe&Args=TortoiseGitProc&Args=/command:commit&Args=/path:"./../"&Args=/closeonend:2
'###########################################################################################################
#End Region
@@ -43,4 +51,10 @@ End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
Dim ks As kms_helperSubs
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("main")
ks.Initialize(Me, "ks")
End Sub