This file contains hidden or 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
| How To Configure Oracle Instant Client (32-bit) | |
| =============================================== | |
| Download the 32-bit Instant Client from the Oracle Developers Portal | |
| Extract the client to a folder like C:\ORACLE\INSTANT | |
| Add the client folder above to the Windows PATH variable | |
| Add a TNS_ADMIN environment variable (TNS_ADMIN=C:\ORACLE\INSTANT) | |
| Add a NLS_LANG environment variable (NLS_LANG=American_America.CL8MSWIN1251) | |
| Create the registry entries for the 32 bit client | |
This file contains hidden or 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
| How To Configure Oracle Instant Client (64-bit) | |
| =============================================== | |
| Download the 64-bit Instant Client from the Oracle Developers Portal | |
| Extract the client to a folder like C:\ORACLE\INSTANT | |
| Add the client folder above to the Windows PATH variable | |
| Add a TNS_ADMIN environment variable (TNS_ADMIN=C:\ORACLE\INSTANT) | |
| Add a NLS_LANG environment variable (NLS_LANG=American_America.CL8MSWIN1251) | |
| Create the registry entries for the 64 bit client | |
This file contains hidden or 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
| 1. Install 'unixodbc' packages (and 'unixodbc-dev' to get some unixOdbc include files). | |
| apt-get install unixodbc odbcinst unixodbc-dev | |
| 2. Go to Builds/Gcc.lin, and execute the following commands (*) | |
| make -f makefile.linux clean | |
| make -f makefile.linux | |
| make -f makefile.linux package | |
| (*) not necessary if you have the installer in hands | |
| 3. Run the installer generated by the previous process |
This file contains hidden or 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
| #1 copy the EMS installer to Linux | |
| C:\Program Files (x86)\Embarcadero\Studio\xx.x\EMSServer | |
| #2 download the Interbase Server for Linux | |
| https://altd.embarcadero.com/download/interbase/2020/Update4/InterBase_2020_Linux.zip | |
| #3 install the Interbase Server | |
| sudo chmod 777 *.sh | |
| sudo ./install_linux_x86_64.sh | |
| register using the EMS deployment server serial number |
This file contains hidden or 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
| del /s /q /f /a .DS_STORE |
This file contains hidden or 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
| *** generate the apkset | |
| java.exe -jar C:\Embarcadero\Studio\21.0\bin\Android\bundletool-all-1.2.0.jar build-apks --mode=universal --bundle=DemoAPKSET.aab --output=DemoAPKSET.apks --ks=C:\Embarcadero\android_app_bundle.keystore --ks-pass=pass:123456 --ks-key-alias=rizzato --key-pass=pass:123456 | |
| *** install the apkset on the device | |
| java.exe -jar C:\Embarcadero\Studio\21.0\bin\Android\bundletool-all-1.2.0.jar install-apks --apks=DemoAPKSET.apks --adb=C:\Embarcadero\Studio\22.0\CatalogRepository\AndroidSDK-2525-22.0.42600.6491\platform-tools\adb.exe | |
| *** zipalign | |
| C:\Embarcadero\Studio\22.0\CatalogRepository\AndroidSDK-2525-22.0.42600.6491\build-tools\30.0.3\zipalign.exe -p -f -v 4 universal.apk universal_a.apk | |
| ** verify zipalign |
This file contains hidden or 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
| REM make sure the adb is on your path - or navigate to the path where it's installed | |
| cmd /c "adb kill-server&&adb start-server" |