mirror of
https://github.com/KeymonSoft/Salma_Almacen.git
synced 2026-04-17 21:06:10 +00:00
134 lines
5.1 KiB
Plaintext
134 lines
5.1 KiB
Plaintext
Build1=Default,b4a.example
|
|
File1=camara.png
|
|
File10=seleccion.bal
|
|
File2=cont_folio.bal
|
|
File3=detalle_folio.bal
|
|
File4=escaneo.bal
|
|
File5=fondoalmancen2.png
|
|
File6=lector.png
|
|
File7=logo-salma.png
|
|
File8=lupa.png
|
|
File9=MainPage.bal
|
|
FileGroup1=Default Group
|
|
FileGroup10=Default Group
|
|
FileGroup2=Default Group
|
|
FileGroup3=Default Group
|
|
FileGroup4=Default Group
|
|
FileGroup5=Default Group
|
|
FileGroup6=Default Group
|
|
FileGroup7=Default Group
|
|
FileGroup8=Default Group
|
|
FileGroup9=Default Group
|
|
Group=Default Group
|
|
Library1=accessibility
|
|
Library10=okhttputils2
|
|
Library11=phone
|
|
Library12=randomaccessfile
|
|
Library13=reflection
|
|
Library14=runtimepermissions
|
|
Library15=sql
|
|
Library16=stringutils
|
|
Library17=xcustomlistview
|
|
Library18=xui views
|
|
Library19=xui
|
|
Library2=aswheelpicker
|
|
Library3=b4xpages
|
|
Library4=bctoast
|
|
Library5=byteconverter
|
|
Library6=camera
|
|
Library7=compressstrings
|
|
Library8=core
|
|
Library9=ime
|
|
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="28"/>~\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~SetApplicationAttribute(android:usesCleartextTraffic, "true")~\n~'End of default text.~\n~AddApplicationText(~\n~<meta-data~\n~ android:name="com.google.android.geo.API_KEY"~\n~ android:value="AIzaSyBlBnx3O-DncOSv3oFIp-12wgujOYYcl-U"/>~\n~ <meta-data android:name="com.google.android.gms.version"~\n~ android:value="@integer/google_play_services_version" />~\n~)~\n~~\n~AddManifestText(~\n~<uses-permission~\n~ android:name="android.permission.ACCESS_FINE_LOCATION"~\n~ android:maxSdkVersion="30" />~\n~)~\n~AddPermission(android.permission.ACCESS_BACKGROUND_LOCATION)~\n~~\n~AddManifestText(<uses-permission~\n~android:name="android.permission.WRITE_EXTERNAL_STORAGE"~\n~android:maxSdkVersion="28" />~\n~)
|
|
Module1=B4XMainPage
|
|
Module2=C_escaneo
|
|
Module3=C_seleccion
|
|
Module4=CameraExClass
|
|
Module5=CameraExClass2
|
|
Module6=DBRequestManager
|
|
Module7=Starter
|
|
Module8=Subs
|
|
NumberOfFiles=10
|
|
NumberOfLibraries=19
|
|
NumberOfModules=8
|
|
Version=12.5
|
|
@EndOfDesignText@
|
|
#Region Project Attributes
|
|
#ApplicationLabel: SALMA ALMACEN
|
|
#VersionCode: 1
|
|
#VersionName:
|
|
'SupportedOrientations possible values: unspecified, landscape or portrait.
|
|
#SupportedOrientations: portrait
|
|
#CanInstallToExternalStorage: False
|
|
'###########################################################################################################
|
|
'###################### PULL #############################################################
|
|
'Ctrl + click ide://run?file=%WINDIR%\System32\cmd.exe&Args=/c&Args=git&Args=pull
|
|
'###########################################################################################################
|
|
'###################### PUSH #############################################################
|
|
'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
|
|
'###########################################################################################################
|
|
#End Region
|
|
|
|
#Region Activity Attributes
|
|
#FullScreen: False
|
|
#IncludeTitle: False
|
|
#End Region
|
|
#AdditionalJar: com.google.android.gms:play-services-vision
|
|
'#BridgeLogger: True
|
|
|
|
Sub Process_Globals
|
|
Public ActionBarHomeClicked As Boolean
|
|
End Sub
|
|
|
|
Sub Globals
|
|
Type CameraInfoAndId (CameraInfo As Object, Id As Int)
|
|
Type CameraSize (Width As Int, Height As Int)
|
|
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. |