Skip to content

Instantly share code, notes, and snippets.

@dan085
Created January 14, 2020 16:18
Show Gist options
  • Save dan085/45dd77c26e5d68501e7256c17997e808 to your computer and use it in GitHub Desktop.
Save dan085/45dd77c26e5d68501e7256c17997e808 to your computer and use it in GitHub Desktop.
librerias teletronic
implementation fileTree(dir: 'libs', include: ['*.jar'])
//implementation(name: 'libBioMini_v20', ext: 'aar')
implementation files('libs/telpo_api.jar')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
/// librerias de google
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.cardview:cardview:1.0.0' //
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
/// libreria de material design
implementation 'com.google.android.material:material:1.0.0'
/// son los cuadros de dialogos
implementation 'com.afollestad.material-dialogs:core:2.8.1'
implementation 'com.afollestad.material-dialogs:input:2.8.1'
implementation 'com.afollestad.material-dialogs:datetime:2.8.1'
implementation 'com.google.android.material:material:1.0.0'
// permite crear json para guardar en sharedpreference
implementation "com.google.code.gson:gson:${gsonVersion}"
//// Shared preference para guardar cache
implementation "androidx.preference:preference-ktx:$preference_version"
/// libreria para subir archivos permite sync y async
implementation 'com.koushikdutta.ion:ion:3.0.8'
// libreria para hacer consultas a las Rest API
implementation 'com.android.volley:volley:1.1.1'
//Libreria para selecionar fecha
implementation 'com.aminography:primedatepicker:1.0.16'
implementation 'com.aminography:primecalendar:1.2.15'
//libreria para leer codigos QR
implementation('com.journeyapps:zxing-android-embedded:3.6.0') { transitive = false }
implementation 'com.google.zxing:core:3.4.0'
//libreria apoyo para colores
implementation 'com.thefinestartist:utils:0.9.0'
// animación fingerprint registro
implementation 'com.mattprecious.swirl:swirl:1.2.0'
///ring progressbar
implementation 'com.mikhaellopez:circularprogressbar:3.0.3'
// 1. Se usa Guava para implementar la converción de bytes a hexadecimal este links lo explica https://www.baeldung.com/java-byte-arrays-hex-strings
implementation("com.google.guava:guava:28.2-jre")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment