0% found this document useful (0 votes)
124 views2 pages

Implementation: "Androidx - Recyclerview:recyclerview-Selection:1.1.0-Rc01"

The document lists various Android library dependencies and implementations including support libraries, Firebase, Glide, Retrofit, Volley and others. It also includes code to print the hash key for signing.

Uploaded by

kaushik ghosh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
124 views2 pages

Implementation: "Androidx - Recyclerview:recyclerview-Selection:1.1.0-Rc01"

The document lists various Android library dependencies and implementations including support libraries, Firebase, Glide, Retrofit, Volley and others. It also includes code to print the hash key for signing.

Uploaded by

kaushik ghosh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

implementation "androidx.cardview:cardview:1.0.

0"
implementation ‘com.android.support:gridlayout-v7:28.0.0’
implementation ‘com.android.support:palette-v7:28.0.0’
implementation "androidx.recyclerview:recyclerview-selection:1.1.0-
rc01"
implementation ‘com.android.support:preference-v7:28.0.0’
implementation ‘com.android.support:support-compat:28.0.0’
implementation ‘com.android.support:support-core-utils:28.0.0’
implementation ‘com.android.support:support-core-ui:28.0.0’
implementation ‘com.android.support:support-media-compat:28.0.0’
implementation ‘com.android.support:animated-vector-drawable:28.0.0’
implementation 'com.googlecode.libphonenumber:libphonenumber:8.9.7’
implementation 'com.google.firebase:firebase-auth:16.0.5'
implementation 'com.google.firebase:firebase-database:16.0.4'
implementation 'com.google.firebase:firebase-storage:16.0.4'
implementation 'com.nex3z:notification-badge:1.0.2'
compile 'com.google.android.gms:play-services-location:7.+'
implementation 'com.firebase:geofire-java:3.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
classpath 'com.google.gms:google-services:3.2.1'
implementation 'com.google.android.material:material:1.0.0-alpha1'
implementation 'com.android.support:design:29.0.2'

implementation 'com.android.support:cardview-v7:29.0.2'

implementation 'com.android.support:recyclerview-v7:29.0.2'

implementation 'com.github.bumptech.glide:glide:4.7.1'

annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'

implementation 'com.squareup.retrofit2:retrofit:2.4.0'

implementation 'com.squareup.retrofit2:converter-gson:2.2.0'

implementation 'org.ocpsoft.prettytime:prettytime:4.0.1.Final'
implementation 'com.squareup.picasso:picasso:2.71828'

dependencies
{
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
}
repositories {
maven { url 'https://jitpack.io' }
}
implementation 'com.android.volley:volley:1.1.1'

private void printHashkey{


try {
PackageInfo info =
getPackageManager().getPackageInfo(getPackageName(),
PackageManager.GET_SIGNATURES);
for(Signature signature:info.signatures)
{
MessageDigest md = MessageDigest.getInstance("SHA");
md.update(signature.toByteArray());
Log.d("KEYHASH",
Base64.encodeToString(md.digest(),Base64.DEFAULT));
}
}catch(PackageManager.NameNotFoundException e)
{

e.printStackTrace();

}catch(NoSuchAlgorithmException e)
{

e.printStackTrace();

ca890a69b1c8490484c83c844701261b

You might also like