use Devart MyDac on android device - android

I are trying to use MyDac on my andriod delphi app but I keep running into a loss of vital information.
I need a file libmysqld.so in the application executable file location whish to me is $Plateform\debug folder of my project.
But I cannot find anywhere or any documentation on how to generate it or download it. I know with Win32/64 you get the libmysqld.dll file when you install MySql server.
Once I have the .so file where do I deploy it to as The device will need it for the app to run.
Im using delphi Berlin 10.1 and the latest version of MyDac

Related

How to start Android Device File Explorer without Android Studio?

I am building my app with React Native and do not need Android Studio. I am starting the emulator directly from console. However if I need to check files, I always need to start Android Studio to launch the Device File Explorer.
Can I launch the Device File Explorer directly from console or as standalone in some way?
Many thanks!
No, sorry, that specific tool is an integrated part of Android Studio.
There used to be the Dalvik Debug Monitor Service (DDMS), which was a standalone tool that had a file explorer among other things. Google discontinued that some time ago.
The only official solution that I can think of is to use adb pull from the command line.
Otherwise, you would need to see if somebody created a standalone tool for this, or perhaps a plugin for Sonar.

How to make ide in Android like AIDE to compile android project in android phone itself

As I know there is a Software (AIDE) in android that can compile android projects to APK in android phones.
My question is how this works? Is it possible to make DEX file in android devices and pack it in APK?
Yes, you can create a basic level Java/Xml Android App using AIDE.
Step:1: Prerequisites
Install AIDE from Google Play on your Android device (all Android versions from 2.2 are supported) and start it. AIDE comes bundled with a mobile version of the Android SDK, so there is no need to install anything else.
Step:2: Creating the App Project
"When you start AIDE for the first time in expert mode you will see the "Create new Project" dialog. If you have already opened a project the dialog will not show, but you can invoke it from AIDE's integrated file browser by choosing "Create new Project here...". In the create app dialog you first choose the type of project you want to create. For your first app choose "Android App / Hello World" here. A dialog will popup where you can define the basic information about your new app: First, choose a name for your app. Second, choose a package name of your app. Your package name must be unique across all packages installed on the Android system. For this reason, it's generally best if you use a name that begins with the reverse domain name of your organization or publisher entity. Finally, tap "Create" to make AIDE generate your new app project. An app project contains all the files that comprise the source code for your Android app. AIDE will generate these files on your SD card. AIDE will also open two important files of your new app for editing: main.xml and MainActivity.java. By default, AIDE will create a Git repository for your new project. This behavior can be turned off in the settings. See the tutorial about Using the Git version control system for more info.
Step:3: Running the App Project
Running an app project with AIDE is easy. Just select "Run" from the menu. In order to run your app, AIDE will first build an Android application package file (APK) for your app. An APK file is used to distribute and install application software onto the Android operating system. The APK file contains all of your program's code, resources, assets, certificates, and manifest file. You will see a popup showing the progress of the build.
Finally, you can run!
For more details:
Create a Simple app using AIDE. AIDE tutorial
Develop Android apps from within Android using AIDE (video)

TeamSpeak SDK on Android Using Qt

I am trying to use TeamSpeak SDK on Android using Qt
1 - I link the .so file comes with TeamSpeak SDK to my Qt Project
2 - Release and APK file and setup it on my Android phone
It works fine, without a problem and connects to TeamSpeak server, but I can't open device Mic or Speaker. When I try to use
ts3client_getCaptureModeList and ts3client_getPlaybackModeList
to see the available devices I can't find anything.
I face this problem on Windows when I don't add the soundbackends file that comes with TeamSpeak SDK. I think that TeamSpeak SDK should have a soundbackend for Android too.
What I'm trying to do is to take the soundbackends on Windows, add it to my Android phone, add the path to sound backends (which is /storage/emulated/0/) but it does not work.
The question is where can I get this files, or what I should do to make sound work?

Can I retrieve android files from my debug phone?

So my laptop has seriously crashed & i REALLY need my android working files (not backed up)
Is there any way I can get the app from my debug phone into android studio (in another laptop) & have them as working android files - pleaseee help!!
If it's your own application and you own copyrights, you can use some tools for decompiling Android apk. Quick google gave me this.
or you can have a look at Is there a way to get the source code from an APK file?

How to deploy Titanium Projects to Android customers?

I want to deliver a finished and working Titanium App to Android customers. But I can't find any documentation about how to produce something like a jar-file that I can create to directly install it on Android devices without the Android market or the Titanium IDE at hand (I can't expect my users to install Titanium IDE first, right).
When you do a build for device in titanium studio, titanium studio creates an apk file for you.
You can find this at Titanium Workspace/Your Project/Build/Android/bin/app.apk. This is the app file you want.
This file can be e-mailed to your customers, and if the android phone is set to accept apps from 3rd party locations, they can install it through this e-mail.
See the Appcelerator Wiki:
https://wiki.appcelerator.org/display/guides/Deploying+to+Android+devices
and
https://wiki.appcelerator.org/display/guides/Distributing+Android+apps

Categories

Resources