Is it possible to run application developed with Adobe Flash Builder on GTablet - G Tablet General

Is it possible running applications for android developed with Adobe Flash Builder on GTablet? Want to use it like central device for my developments.

I can package the APK and if somebody want to participate in experiment I will send the file, and you just run it on your device?
Anyone?

mobilemodding.info said:
I can package the APK and if somebody want to participate in experiment I will send the file, and you just run it on your device?
Anyone?
Click to expand...
Click to collapse
You may wanna join the #tegratab channel on freenode irc. Usually a few willing testers and if you upload and post a link most likely will get instant feedback.

mobilemodding.info said:
Is it possible running applications for android developed with Adobe Flash Builder on GTablet? Want to use it like central device for my developments.
Click to expand...
Click to collapse
I can answer my question myself since I got device I did some tinkering
You can run application developed in AFB like mobile application, if you will try to run something adopted from desktop, it wont run properly becasue IMHO mobile AIR does not contain all necessary libraries.
There is no way right now to debug on device, apparently it needed some special USB driver from Adobe in order to connect debugger with device via USB, I think this will be released when GTablet will pass certification with Adobe. I've tried to use USB driver of other Android deices - no success.

I've been using Burrito (Flash Builder) for the last few weeks with my GTab - it rocks. I've ported a couple of my other AIR apps. You're right in that not all of the AIR API is supported (yet) on Android, and not all of the device's sensors are supported either.. but it *is* still in Beta (last time I checked).
In short, I've been developing Android apps for a year now.. in Eclipse with java, using AppInventor, and using Adobe Flash Builder Burrito... and even with the missing API features, hands down Burrito is my favorite tool for Android development now.

Related

Android Screencast (My Mobiler for Android) and Android Screen Monitor

Hey guys, i just wanted to share these applications that i found awhile back. I have them posted in the old vogue forums but they still come in very handy to me.
I DID NOT DEVELOPE ANY OF THIS SOFTWARE. CREDIT GOES TO THE DEVELOPERS
Some of you may already have these.
If you have Android SDK, ADB and JAVA, all you need to do is download the attached files, extract, and run them.
Link To Android SDK
Link To Java
Android Screen Monitor
This is a really nice and easy to use screen monitoring\screenshot program.
ASM is an Android Debug Bridge (adb) client, When it starts monitoring screen,
ASM connects to adb on port 5037 and receives frame buffer continuously on the device or emulator and transfer image to your desktop window.
You can rotate and scaling monitor window and export a image into PNG file as screen shot tool.
ADB Must be installed
If you have sdk installed skip step 1.
If you have Java JRE(JDK) installed skip step 2
Make sure you have your phone plugged in usb.
1. Make sure ADB is functional
2. Download Android SDK for Windows and place the android-sdk-windows folder on the root of your C:\ Drive.
3. Download and install Latest version of Java
4. Download the attached asm.zip and extract asm.jar out.
5. Place the asm.jar in \android-sdk-windows\tools folder.
6. Right click on asm.jar and place a shortcut on your desktop. Run the jar file or shortcut to bring up the monitor
right click on monitor screen to:
get screenshots
change to landscape\portrait
zoom in or out
_____________________________________________________________
ANDROID SCREENCAST(My Mobiler for Android)
Features
- Mouse and keyboard control FOR ROOTED DEVICES ONLY
- Landscape mode (right click)
- Video recording
- Basic file browser
INSTRUCTIONS
SDK, ADB, and Java are required
Download the attached java file, unzip it, and just run it.
If you have trouble, put it in your sdk\Tools folder and make a shortcut to your desktop.
Should go in the Apps forum, not the android development forum.
dude0909 said:
Should go in the Apps forum, not the android development forum.
Click to expand...
Click to collapse
I thought i was in that forum. Dont know how i got here. Weird
anyone tried these yet?
incubus26jc said:
anyone tried these yet?
Click to expand...
Click to collapse
Yes, I just tried out the Android Screencast. It seemed to work well. I am not sure what I would use it for, but it did work.
I didn't try ASM because I use DDMS for screenshots. DDMS is built into the Android SDK and works perfectly without needing anything extra.
Thanks for the contributions though.
greek keyboard
although it is rather slow, it works Ok.
I can use the english keyboard for composing messages, working with contacts, but when I turn the PC-keyboard to the greek language, I cannot use it with the phone.
Any suggestion pls?
g00gl3 said:
Yes, I just tried out the Android Screencast. It seemed to work well. I am not sure what I would use it for, but it did work.
Click to expand...
Click to collapse
Screencast is great for people like me who are physically disabled and can't use their hands. I used to use EveryWan Personal Edition by Sparus Software which only works with Windows mobile devices...hope screencast will become as good as (or better than) EveryWan!
inverted screen
Hello
I tried the 2 apps : they work fine but the screen display is inverted !
Any idea?
Thanks
my device : ZTE Blade + FLB Froyo 2.2 ROM
(update: same result with webkey)
the same problem with zte blade and CyanogenMod-7.0.0-RC4

[Q] Why is mobile OS installation flow not like PC OS installation flow

Hi everyone!
I have this question in mind for a long time now. It gets confirmed every time a company decides to make a new mobile OS. Why is it so damn difficult to first install a mobile OS, but even more, why only people with some special knowledge and dedication can port an OS to a new mobile device?
I mean, on a computer we just have to select if we want i386/x86 or AMD/x86_64 installer what ever computer brand or other hardware we do have while on mobile, we need to have a very specific image for our device. We end up with hundreds if not thousands of images of the same version of the OS.
So my question is, why don't we have this work flow to install a mobile OS:
- Flash a generic image on the device
- Run it
- Auto compile a new kernel on the device itself
- Load generic drivers
- If generic drivers don't work, download specific ones
- Continue with installing other regular software
Technical answers are welcomed.
Thanks,
Dragnucs.
Because.
Building the kernel on the device would take a lot of time and most phones do not have the resources to do so (memory and CPU).
Adding a development environment (compiler, libs, etc.) to the install image would make the install image quite large.
Most manufacturers release incomplete code for their drivers. This makes a complete re-creation of them from source nearly impossible.
There is no repository for 3rd party binary device drivers (probably not "legal" to do so). Mobile phones often have a proprietary system UI framework which is never released as source code. The best you can do is either re-create your own (AOSP, CM, AOKP) or borrow the one from the stock firmware release (Touchwiz, Sense).
If your phone needs a "special" network driver, how are you going to transfer one over during your install if you don't already have one. (classic chicken vs egg scenario)
It is much easier to setup one generic build (on a PC or server), then have custom compile scripts for each device you intend to support. Also a lot easier to debug build issues on a full computer than trying to do so on a phone.
In the PC world, you have manufacturer's that have to release binary drivers to Apple/Microsoft for validation and make binary or source drivers available for Linux. In the mobile world, those processes do not exist.
-Mike
Dragnucs said:
Hi everyone!
I have this question in mind for a long time now. It gets confirmed every time a company decides to make a new mobile OS. Why is it so damn difficult to first install a mobile OS, but even more, why only people with some special knowledge and dedication can port an OS to a new mobile device?
I mean, on a computer we just have to select if we want i386/x86 or AMD/x86_64 installer what ever computer brand or other hardware we do have while on mobile, we need to have a very specific image for our device. We end up with hundreds if not thousands of images of the same version of the OS.
So my question is, why don't we have this work flow to install a mobile OS:
- Flash a generic image on the device
- Run it
- Auto compile a new kernel on the device itself
- Load generic drivers
- If generic drivers don't work, download specific ones
- Continue with installing other regular software
Technical answers are welcomed.
Thanks,
Dragnucs.
Click to expand...
Click to collapse
Thanks buddy. :good:

[Q] Newb using Android SDK/Genymotion

I am interested in buying a new android and would like to run the OS from a few android phones in a virtual machine. Everything is installed, Android SDK, eclipse, Genymotion, as well. After loading one of the VMs that are already available, what interested me was how could I load a particular kernal for a phone that I would like to buy.
For example, I downloaded the rom for the ZTE Open C (firefox OS). How would I go about converting this to a VDI or OVA? Not sure even which I would convert it to. Could somebody even possibly point me to the correct faq, did some searching but not really sure what to search for so only coming up with how to root your phone.
Thank You

[Oreo] Introducing Android Emulator from Google - the fast boot with snapshot

Android Studio 3.0 ships the latest version of the Android emulator, with the following major new features:
(1) Quick Boot, which allows the emulator to boot in a couple of seconds using state-of-the-art snapshot technologies. The android emulator is the first android virtual machine that supports true OpenGL snapshots.
(2) OpenGL ES 3 support, this means it supports more modern games.
(3) Android Oreo 8.0 and Google Play store support (this is an old feature)
https://androidstudio.googleblog.com/2017/10/android-emulator-2620-canary-with-quick.html
Follow the following steps to install Android studio and the emulator:
(1) Download and Install Android Studio 3.0 here:
https://developer.android.com/studio/index.html
(2) Make sure the Android Emulator version is 26.2+, this is the version that supports Quick Boot.
Go to Android Studio menu Tools > Android > SDK Manager , click Updates tab, and choose Canary Channel, as shown in the screenshot.
Then click Android SDK > SDK Tools, and you should see Android Emulator Update Available 26.2.1, select it and click OK to install.
(3) Create AVD
Go to Android Studio menu Tools > AVD Manager, click Create Virtual Device, you can click Show Advanced Settings to check if Quick Boot is available. If you don't see it, meaning you have an old version of the emulator.
(4) Quick Boot
To verify the Quick Boot feature, when you close the emulator (the + sign from sidebar), you should see a notification of Saving State..., and when you start the AVD, it should boot instantly, and showing Loading State...
Please refer to the attached screenshots for more details.
You can also download the preview version of Android Studio, then can download latest Android emulator directly:
https://developer.android.com/studio/preview/index.html
huisinro said:
You can also download the preview version of Android Studio, then can download latest Android emulator directly:
https://developer.android.com/studio/preview/index.html
Click to expand...
Click to collapse
Is this time the Android Emulator completely separate from the Android studio?
Because you know man Google can develop the best Android Emulator available on the earth but its is not optimising it to be like the what leapdroid was on the PC
---------- Post added at 06:48 AM ---------- Previous post was at 06:47 AM ----------
I definitely know that how people are especially searching for the emulators over the web and you supported that development sometime ago before you join Google so please request on our behalf to the Google to like develop something like Android on desktop so that this open source operating system will have well reach even to the desktop users and not just all those Chrome OS users.
If you've got a brave soul, all direct download links are inside this public xml repository file:
https://dl.google.com/android/repository/repository2-1.xml
for example, the Mac version of the emulator link: https://dl.google.com/dl/android/repository/emulator-darwin-4266726.zip
huisinro said:
If you've got a brave soul, all direct download links are inside this public xml repository file:
https://dl.google.com/android/repository/repository2-1.xml
for example, the Mac version of the emulator link: https://dl.google.com/dl/android/repository/emulator-darwin-4266726.zip
Click to expand...
Click to collapse
I didn't intend to hurt your feelings in any way but what I did was the request from the hundred of the users of the leapdroid community to request you to get the best available emulator that can be developed only by Google by the help of the excellent developers like you.
You know how much popular Leapdroid was when it was in the active development stage and people are worshiping you as the god of the emulator till now
Can you just give the link of the AVD and the emulator only from the XML file for windows so that we will just be able to run the emulator fine, because I am Noob and and I don't have any much idea about reading this XML file
Android Emulator v27 with Quick Boot is launched today:
Blog:
https://android-developers.googleblog.com/2017/12/quick-boot-top-features-in-android.html
Social:
https://twitter.com/AndroidDev/status/942824787633635329
https://plus.google.com/+AndroidDevelopers/posts/XAWLxuc92Wa
OMG!!! The amount of downloads I have to do before I can even try the emulator is crazy. Download Android Studio, download canary. You did not tell us what to do after the canary finished downloading. Also, I can't even find the items in step 3 that you stated in the first post. You did not state that I have to start a new project before I can even find this "AVD Manager". Not everyone is familiar with Android Studio. Then, I have to wait for another download when starting the VM. 1 full hour of downloading at least 3gb of stuff and figuring out where to find stuff and make them work and I have not even managed to open the VM. Cancelled the VM download finally and wasted my time trying to figure out how to get this emulator to work. If you really want people to test your emulator, at least give proper instructions and give a warning how much downloading is needed.

Help needed updating Mediawave MW22-A32 from 4.4.4 to OS6.0+

Hi all! Android noob looking for suggestions.
Manufacturer: Mediawave PC (now Techland PC)
Hardware Model: MW22-A32
Current OS: 4.4.4
Chipset: Rockchip RK3288 (supposedly capable of Android 8.1)
Rooted with SuperSU
Purchased this 22" touch display off eBay and wanted to load an app that requires Android 6 or higher. The manufacturer does not offer an update package for this device and indicated what I have was a special build for a single project that is now likely being refreshed and hardware liquidated. Tech Support indicated I needed to simply buy a NEW device that already has the OS updated.
I would like to think we can update to a newer version of OS, but I have no idea where to start. I checked a few online videos, but they seemed to point to pre-packaged OS bundles from tech enthusiasts for specific mass market tablet models.
Is an upgrade like this possible without having device specific files/firmware? If so, can you point me to a guide or walkthrough for how to do this as an Android novice? Thank you!
In order to upgrade existing Android OS as 1st thing of all things you need to find a
1. Custom Recovery
2. Custom ROM
both suitable to the mentioned device.
jwoegerbauer said:
In order to upgrade existing Android OS as 1st thing of all things you need to find a
1. Custom Recovery
2. Custom ROM
both suitable to the mentioned device.
Click to expand...
Click to collapse
Can I create a recovery from the existing image? Is there a utility that will export that?
Look inside here:
[DEV]How to compile TWRP touch recovery
All of TWRP 3.x source is public. You can compile it on your own. This guide isn't going to be a step-by-step, word-for-word type of guide. If you're not familiar with basic Linux commands and/or building in AOSP then you probably won't be...
forum.xda-developers.com
jwoegerbauer said:
Look inside here:
[DEV]How to compile TWRP touch recovery
All of TWRP 3.x source is public. You can compile it on your own. This guide isn't going to be a step-by-step, word-for-word type of guide. If you're not familiar with basic Linux commands and/or building in AOSP then you probably won't be...
forum.xda-developers.com
Click to expand...
Click to collapse
Using the 'Official TWRP App', I created a copy of both the boot and recovery image.
For the next step, if the device manufacturer will not supply an updated ROM, can you use the hardware profile help find a close custom rom that may work here? if so, do you have any suggestions on next steps? I installed the 'Droid Info' app to view hardware info, but it was not as detailed as I had hoped.
Can't answer your questions because I never compiled TWRP at my own.
Were you ever able to update this device? I have one that i want to update as well.
I also bought one of these off of ebay and would like to know if you figure out how to upgrade to Android 8.1.
$175 - https://www.ebay.com/itm/304190850043
Sellers other items:
Jjsurplus1090 Reviews - eBay Store Seller Profile
Jjsurplus1090 is a seller on eBay and has received feedback from more than one thousand consumers and has a positive feedback rate of 98.8%.
www.findthisbest.com
$998? - https://www.neweggbusiness.com/product/product.aspx?item=9siv2hu9829613
Manufacturer Contact Info: http://techlandpc.com - 510-490-6768 - [email protected]
MediaWave PC
MediaWave PC. 52 likes. Embedded And Digital Signage Hardware Specialist
www.facebook.com
MW22-A32 | Techland PC
http://techland.webandapp.design/wp-content/uploads/2017/09/MW22-A32.pdf
Side question: Does anyone know if there is a webcam or camera that will work with this device?
https://datasheet.lcsc.com/szlcsc/Rockchip-RK3288_C191247.pdf
Rockchip RK3288 model number AIO MW22-A32
I sent an email to [email protected] and will report back once I get a response:
I purchased one of these recently and the OS is Android 4.4.4
Do you know where I can download the ROM, Recovery image file?
I believe that I saw that your website stated the OS to be Android 7.1.
Is it supposedly capable of Android 8.1?
<and thank you very much>
Yet another question...
The unit I purchased seems to have only 1GB DRAM?!?
Any way to increase this? Any advice is greatly appreciated!
2015 Rockchip Light Biz OS for Android Laptops/Desktops, UI for productivity on RK3288 and RK3368
Download and Install Lineage OS 17.1(Android 10) for Google Rockchip RK3288
How To Install Lineage OS 17.1 - Google Rockchip RK3288 Chromebook RK3288 Chrome OS Device jerry cheets - TweakDroid
Complete Guide [With Download Link] to Install Lineage OS 17.1 In Google Rockchip RK3288 Chromebook RK3288 Chrome OS Device jerry cheets. Let's Customize Your Google Rockchip RK3288 Chromebook RK3288 Chrome OS Device jerry cheets With Latest Lineage OS 17.1.
tweakdroid.com
Custom ROMs For Google Rockchip RK3288
List of Custom ROMs for Google Rockchip RK3288 Chromebook RK3288 Chrome OS Device jerry cheets - Download & Install Guide - TweakDroid
Here is the available Custom ROMs list for your Google Rockchip RK3288 Chromebook RK3288 Chrome OS Device jerry cheets & Custom ROM Installation Guide for Google Rockchip RK3288 Chromebook RK3288 Chrome OS Device jerry cheets.
tweakdroid.com
Flash ChromeOS Rockchip RK3288?
How to flash firmware to Rockchip devices in Windows and Linux (2021 Edition)
How to flash firmware to Rockchip devices in Windows and Linux (2021 Edition) - CNX Software
We've written several articles detailing methods to flash firmware to Rockchip devices in Windows or Linux over the years, with tools like RKAndroidTool,
www.cnx-software.com
I called 510-979-8822, asked for customer support, left a voicemail
I reached out via LinkedIN - https://www.linkedin.com/in/brian-goduco-240ab47/
I also sent an email to [email protected] and [email protected]
It looks like their facebook page is dead or gone. This tweet is supposedly a link to one of their device photos:
https://twitter.com/i/web/status/11045078102Their twitter page has not been active since they first joined in March 2010 - https://twitter.com/techlandpc
Firmware Upgrade Guide For RK3188 RK3288 RK3368 Devices
UPD: Rreflashing guide for linux Host PC added. BEFORE START What you need: 1. Image file 2. Host PC (Windows) 3. USB OTG Cable Supported host OS: 1. Windows XP (32/64bit) 2. Windows 7 (32/64bit) 3. Windows 8 (32/64bit) All manipulations I...
forum.xda-developers.com
donclark said:
Firmware Upgrade Guide For RK3188 RK3288 RK3368 Devices
UPD: Rreflashing guide for linux Host PC added. BEFORE START What you need: 1. Image file 2. Host PC (Windows) 3. USB OTG Cable Supported host OS: 1. Windows XP (32/64bit) 2. Windows 7 (32/64bit) 3. Windows 8 (32/64bit) All manipulations I...
forum.xda-developers.com
Click to expand...
Click to collapse
Don - were you successful?
TXdev said:
Don - were you successful?
Click to expand...
Click to collapse
I did not attempt. TechlandPC did respond and said that this model maxed out at 4.4.4. I was not convinced that the updated firmware will work with this device and could not find anyone specifically doing it to this device - and did not want to brick it. I was able to delete some large system apps and free up some space with OAndBackupX (Andorid 4+)- https://f-droid.org/en/packages/dk.jens.backup/
Interested in this aswell.
I know the topic is a few months old but I’m currently looking at possibly purchasing the 22” or 15” in models and wanted to see if there were any further updates? What is everyone using them for? I hope to use them with home assistant and fully kiosk…anyone know if it’s possible? Seems like there is enough interest, maybe we can get this tablet upgraded?
Crazyshakespeare15 said:
I know the topic is a few months old but I’m currently looking at possibly purchasing the 22” or 15” in models and wanted to see if there were any further updates? What is everyone using them for? I hope to use them with home assistant and fully kiosk…anyone know if it’s possible? Seems like there is enough interest, maybe we can get this tablet upgraded?
Click to expand...
Click to collapse
I purchased the 22" for my 83yr mother. I created a desktop stand for her to use it to view her gmail, facebook, etc. Its fairly limited because of the small space on the device, So I found a way to move many of the apps to an external usb. It also does not have a camera - which would have been nice for her to be able to use to make videochats, but I could not get an external usb camera to work (tried 4 different makes/models). I never did attempt to flash and upgrade it.
Oh wow Don…good on you for getting your grandmother up and going with it. I’m a little scared to take the plunge not knowing if it can run what I need…how good is the browser (is the system sluggish?) They two I’m looking at say they have built in cameras (I too was hoping to use it) but I bet it will be a no go :/
Crazyshakespeare15 said:
Oh wow Don…good on you for getting your grandmother up and going with it. I’m a little scared to take the plunge not knowing if it can run what I need…how good is the browser (is the system sluggish?) They two I’m looking at say they have built in cameras (I too was hoping to use it) but I bet it will be a no go :/
Click to expand...
Click to collapse
If it says in the description that it comes with a camera - you may be ok. Mine clearly stated that it did not have a camera.
It is responsive and works well. I did do something to make it sluggish but I do not remember specifically... it may have been that I came very close to maxing out the storage which caused the issue.
The other thing that I was really disappointed in is that it does not have an HDMI in. So I could not push video to it. It does have an HDMI port, but I havent tested if it does push video to another device since I didnt have a need to do that.
It’s good to hear it’s responsive (or was lol) maybe I should just bite the bullet and get it…if I can just get it to run Home assistant it will be golden…if you think of anything else or figure anything out let me know!

Categories

Resources