Questions tagged [android-embedded-api]

10 questions
13
votes
1 answer

What is the difference between Flutter Android Embedding V1 and V2

I am working on a plugin for Flutter with background stuff. Recently, I faced somethings about Flutter android embedding in the android_alarm_manager plugin. A part of the README says: For the Flutter Android Embedding V1, the background service…
Mahdi-Malv
  • 16,677
  • 10
  • 70
  • 117
2
votes
1 answer

AOSP building : hiddenapi: No DEX files specified

I am building android repo to flash it to a rpi, and arround 80% of the process it failed. this is the log [ 0% 3/6424] build out/target/common/obj/JAVA_LIBRARIES/apache-xml_intermediates/dex-hiddenapi/classes.dex FAILED:…
2
votes
3 answers

Error null value in entry fakeoutputdirectory=null?

When I try to run my app on android studio, I get an error that says: Error null value in entry: fakeOutputDirectory = null I have tried deleting the .gradle folder but it doesn't help. Note: I am running on the built in avd emulator
2
votes
1 answer

Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth)

I am using signpost for OAuth to access data from a Magento server. I have read various tutorials on the same and I reach to the point where we open a browser so that user can enter his credentials. However, as per my requirement I have to automate…
1
vote
1 answer

Select 3 entities at once from Room Database with @Relation

I have a database in my application that has 3 tables Server, Site, Group @Entity(tableName = "servers") data class Server( @ColumnInfo(name = "server_id") var serverId: Long, @ColumnInfo(name = "account_id") var accountId: Int, …
james04
  • 1,580
  • 2
  • 20
  • 46
1
vote
1 answer

OAuth: Exception on retrieveAccessToken() while connecting with yahoo on emulator?

Above error comes when integrated to yahoo provider define below code provider = new CommonsHttpOAuthProvider( "https://api.login.yahoo.com/oauth/v2/get_request_token", …
duggu
  • 37,851
  • 12
  • 116
  • 113
0
votes
1 answer

Copying the android output

I wish to know one thing regarding android apk file and the output generated. Actually I want to take the output that comes after running an apk file, copy the output into another file and use it for some purpose. Friends tell me Can that be done ?
sai sindhu
  • 1,155
  • 5
  • 20
  • 30
0
votes
1 answer

Which are the Android embedded APIs?

I know on the core Android API there's some embedded third-part APIs such as Apache HTTP. My question is: What else are embedded on the API also?
Marcos Vasconcelos
  • 18,136
  • 30
  • 106
  • 167
0
votes
1 answer

Porting Android to nanoTesla A8

We have an embedded device in our organisation that has a nanoTesla A8 board and runs linux. We want to run android on the device to develop android apps for our device. Is it possible to run Android on nanoTesla? Is there any porting available for…
Shaik Syed Ali
  • 3,359
  • 3
  • 17
  • 22
0
votes
1 answer

Android.mk , inking but not including Shared Libs in output

Having a bit of an issue here. I am trying to port over the open source application IMSdroid to work with newer and more consistent build systems. I already got ANT working correctly, but need Android.mk working as well to make life easier. (Make…