Reputation: 4232
As we create our app at dev.twitter.com/apps
We get below details:-
Consumer Key (API Key)
Consumer Secret (API Secret)
So where is the FABRIC KEY ?
In android manifesto file we have to use this FABRIC KEY
<meta-data
android:name="io.fabric.ApiKey"
android:value="xxxxxxxxx" />
So please help me.
How can we get FABRIC KEY ?
Upvotes: 12
Views: 35559
Reputation: 2957
I guess you are trying to install the ionic plugin
ionic cordova plugin add cordova-fabric-plugin --variable FABRIC_API_KEY=ec...5 --variable FABRIC_API_SECRET=9a...173e
You will find them there.
Upvotes: 0
Reputation: 1053
If you’re looking for your API key or build secret, select your org on the https://www.fabric.io/settings/organizations, and click on the API Key and Build Secret links right underneath your org’s name.
Upvotes: 15
Reputation: 711
To get fabric api key you need to install fabric plugin from settings-->plug ins then restart android studio then press fabric icon complete the wizard to get a list of fabric services choose crachlytics and install it after accepting terms of crachlytics
then it will ask you to make changes to your manifest and java file and build.gradle
ignore changes of build.gradle if you have already set it and ignore changes to the java file if you do not want to use the crachlytics but apply the changhes to your manifest file
these changes include the Internet permission if you have not already added it and includes the fabric api key that you need to add
hope this helps
Upvotes: 1
Reputation: 678
Once you have login to Fabric go to https://fabric.io/kits/android/twitterkit/install and scroll down and see the section Add Your API Key from here you can copy your API Key
Upvotes: 4