1
0
Fork 0
mirror of https://github.com/ethauvin/android-about-box.git synced 2025-04-25 02:37:11 -07:00

Added AboutBox library source code. Implemented IAnalytic and IDialog interfaces for custom usage.

This commit is contained in:
Alex Dibrivnyi 2017-02-05 20:27:38 +02:00
parent 8a88eb2217
commit 8b28ebfb79
56 changed files with 1296 additions and 0 deletions

24
build.gradle Normal file
View file

@ -0,0 +1,24 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}