I am building android jelly bean for my development board,I need to build google store apps with this image,but through research i came to know that google apps source code is not open source.
In that case is there any way to get the google app source code?
Do i need to purchase google apps source code or i must have to use only google apps apks provided by google.
please suggest me a option to come out from this problem
Thanks you all in advance
Regards
Ajai
In that case is there any way to get the google app source code?
I have no idea if you can get the source code. Whether you can even license the APKs is up to Google. Quoting the source.android.com FAQ:
The Google apps for Android, such as YouTube, Google Maps and Navigation, Gmail, and so on are Google properties that are not part of Android, and are licensed separately. Contact android-partnerships#google.com for inquiries related to those apps.
Related
Now I was taking app list and app details from Google Play.
It's based on open source below.
https://code.google.com/p/android-market-api/.
Actually it worked well before a week but now all APIs in source code above are blocked.
I investigated source code and found "https:// www.google.com/accounts/ClientLogin", one of APIs returns "https:// developers.google.com/identity/protocols/AuthForInstalledApps".
Because of this result, http:// android.clients.google.com/market/api/ApiRequest in android-market-api cannot be used anymore.
Message
Message says I have to migrate to OAuth 2.0 but there is no API for the same functions above.
Here is my questions.
Is there official APIs with OAuth 2.0 for the same function above ?
Is there alternative APIs or process for the same function above? (The best is finding a way to use android-market-api.)
I really have to resolve this issue. Please help me.
Thanks.
In the google i/o 2014 there was a vast introduction of new Google play services APIs. I learned that there is an API called address by which users don't have to put their address manually and this API will take all the information dynamically from his/her gmail account.
In my project I just want to set the address in a TextView but I didn't find any single tutorial on it over the internet. I have set the google play service library as a library project in my project but I cant do further on this occasion, any help?
You can refer this post from Android Developer blogspot to get more details
http://android-developers.blogspot.fr/2014/03/google-play-services-43.html
I searched lot for the same you want, there is no details available except the package details and this blog post,
In the post they have mentioned
That’s it for this time. Now go to work and incorporate these new features to make your apps even better!
And stay tuned for future updates.
I think they will come up with the tutorial and documentation in near future
Update: I got a hint from the the Google Opensource wallet sample,
You can get the the idea when you look at this file thoroughly
https://github.com/googlewallet/instantbuy-android/blob/f3ed08dfc13d843fe15c397c72df440ba32309e8/src/com/google/android/gms/samples/wallet/PromoAddressLookupFragment.java
I created a sample app based on this file and succeeded.
My Problem is, that I want to use any SDK or API to access my google drive from my android phone without using an existing google drive app on my android phone.
I read the instructions on this side: google drive sdk
The code examples does only work for desktop applications and the "integrate with Android" topic on the side does not provide any example how I can access my google drive from my android application.
I already read android-api-for-google-drive here but this leads only to more links and how-to's which are far to complicated and fuzzy.
Has anyone experience with connecting to google-drive from an android application and could help with any example code or "clean-and-short-explained" tutorial?
Luckily, just after you asked this question, Google released their Play Services (see this link), which makes it a heck of a lot easier to access files using the Drive SDK & Drive API. Please see my post on Google Plus that gives a step-by-step walkthrough and code example on how to integrate an Android app with Google Drive documents: https://plus.google.com/u/0/114042449736049687152/posts/CD3L8zcJg5Z
In the tutorial, I reference a particular Google IO 2012 talk (slides at https://docs.google.com/presentation/d/1LrEKp2PqESsES3upS1xsSARz35KS-9QHnYFTKvS2yzM/preview#slide=id.p19), but please read my G+ post because I go through the various flaws, pitfalls, and omitted details from this presentation.
Before you start coding anything, get yourself signed up for the Google APIs (see this link), get into the API Console, and turn on both the Google Drive API and Drive SDK.
Good luck & have fun!
Does exist some software for developers that is able to upload applications into Android Market (Google Play)? I want to automate this process, because I have very many apps in Market. Official or unofficial, no matter.
The API (http://code.google.com/p/android-market-api/) here is for emulating the android marketplace to pull data. You'd have to mimick the login onto the android marketplace developer center then use some kind of DOM Crawler like (symphony dom crawler to navigate and use GET/POST to mimick the calls for uploading).
Login to Google with PHP and Curl, Cookie turned off?
I'm not aware of any official API that allows this. I doubt Google would be keen to implement it as it could encourage submission of vast numbers of auto-generated apps.
The nearest I've seen is this unofficial API to read data, but as far as I'm aware there's no facility to submit apps:
http://code.google.com/p/android-market-api/
Google has presented a new API to work with Google Play Developer Console. Here is the link for it's description: https://developers.google.com/android-publisher/
Can anyone used Google+ in android app? I searched about the same thing but I found nothing. If anyone have any idea or related code then please post here.
Thanks.
There is no public API yet, but you can sign up for updates here:
https://services.google.com/fb/forms/plusdevelopers/
A basic Java library is available here:
http://code.google.com/p/javaplus/
And a basic PHP library here:
https://github.com/jmstriegel/php.googleplusapi
Here is the link to the Google APIs.
https://developers.google.com/+/mobile/
You can create your application, and add several APIs to it (Youtube, Google+, etc).
There are several samples.
Hope its useful
You can also try http://code.google.com/p/google-plus-java-api/
Integration of Google Plus into your android application requires following prerequisites
Enable Google+ API on Developers Console and create credentials for your application authentication
Configuring Google Play Services in Eclipse
Create Android Application with Google Plus Sign In
You can check detailed step by step tutorail at
http://androidsrc.net/integrating-google-plus-sign-in-into-your-android-application/