i want to use the Telegram API to create an Android app that works with Telegram data.
I already registered a new app and i have an api_id and an api_hash.
The problem is that i don't know what do to next, i tried to read the documentation but i find it really messy, it just jumps from create the app to authentication but doesn't explain how to setup android project and other necessary things.
I already tried to search some android project as this:
https://github.com/DrKLO/Telegram
But when i start it simply doesn't works and send NDK errors.
Does someone can explain me the steps to do next?
Related
Currently, I am making an Android app in which I need to integrate the complete Twitter app.
I went through Fabric website where I got to know that using the plugin in my app I could integrate Twitter App functionalities very easily.
I want to know if someone has used it.
Will it be really helpful in my case?
Does it give the same feel of the original Twitter app?
Does the plugin also provide UI(Twitter app UI) or do I have to make my own UI?
The twitter APIs and SDK is one of the most advanced and interesting ones i have ever used. It gives the real feel and look of twitter ( login, twitter lists). The SDK does most of the work for you. For example when you want to list tweets using List,the only thing you will need is to create a list view and a text view in your xml.
Initializing the sdk in your app is just less than 5 lines of code.
The console is easy to use as well. This will help you set up your app so fast.
For me i didnt feel like a programmer when using the SDK unlike when I am really struggling to use GMAIL APIs.
Go ahead and just do it.
Happy Coding.
I'm currently working on an app that requires match data from tinder but I have never worked with API's before and I'm not too sure how it works. I found some projects on github using the tinder api which I will link at the end there are just some parts that confuse me. Firstly all of the files are in python so is there a way I can implement that in a java file in android studio? Also it says that facebook authentication is required for the api to work so would having the user log into the app with facebook solve that issue?
https://github.com/fbessez/Tinder
I am searching for correct information about implementing In app calling using SIP and VoIP.But I am not getting correct source of information for this and even I am confused about where to start.
Is there any SDK or Tutorial available for android ?
Hi can anybody have a suggestion on how t implements this simple android chat app in github? https://github.com/firebase/AndroidChat . i need to implement that link for exercising on how to create a simple chat application for android using firebase live. It says there to change the URL in “mainactivity” afterward i do not have any idea at all. i am new in firebase and did make some research on how to manage app. unfortunately I’ve seen this source in github. But the thing is that I don’t have any idea on how to implement it. Suggestions guys on how to run into i think HTML and it will be link on my URL in firebase?
Hoping someone can view this.
It says you need the URL to point to your own Firebase server. It is free and easy to create.
When you stand on the Viewing my first app screen in Firebase, you can see your Firebase's URL in the browser, which is what you need in MainActivity.
Have you checked out the Firebase quickstart guide?
If you take a look at the sample project's dashboard in your browser, you can see this data structure:
chat
randomlyGeneratedMessageId1
author: "jane1994"
message: "hi there"
randomlyGeneratedMessageId2
author: "johndoe"
message: "asdasd"
You are going to have the same data structure. It is automatically created if you write and send a message from the example app.
EDIT:
It is much simpler than you think. No localhost or anything is involved. Steps:
Have a Firebase account
Log in
Click here
Now you can see all the data you have in the cloud. It is already live. If you give the .apk to any friend and they run the app on their Android device, they can already send data through the app to your own server.
EDIT2:
The thing you found on GitHub is an Android Studio project. You can only open and run it using Android Studio.
After you compile the project using Android Studio and you have the .apk, you can use it as any other .apk.
I would like to include a menu item in my Android app (built using Cordova/PhoneGap) that provides users with the ability to invite their friends to download the app from Google Play.
Does anyone know of an existing solution for this? I have not had much luck finding one.
On BlackBerry10, this is extremely easy to do (literally 1 line of code). It leverages the OS and BBM to share the download URL of your app with your closest friends:
blackberry.bbm.platform.users.inviteToDownload();
link
Please tell me something similar like this exists for Android (iOS?) ? Thank you.
I use this plugin and works perfectly: https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin
It's a sharing plugin that allows a lot of configuration options. You could configure it so users share a link to your app on Google Play. The documentation explains how to set everything up.