Added Android code
[wl-app.git] / Android / app / build.gradle
1 apply plugin: 'com.android.application'
2 apply plugin: 'io.objectbox'
3 apply plugin: 'io.fabric'
4
5 android {
6     compileSdkVersion 27
7     defaultConfig {
8         applicationId "com.moiseum.wolnelektury"
9         minSdkVersion 19
10         targetSdkVersion 27
11         versionCode 5
12         versionName "2.0.0"
13         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
14         multiDexEnabled true
15     }
16     buildTypes {
17         release {
18             minifyEnabled false
19             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
20         }
21     }
22     buildToolsVersion '27.0.3'
23     compileOptions {
24         sourceCompatibility JavaVersion.VERSION_1_8
25         targetCompatibility JavaVersion.VERSION_1_8
26     }
27     dexOptions {
28         jumboMode true
29     }
30 }
31
32 dependencies {
33     implementation fileTree(include: ['*.jar'], dir: 'libs')
34     implementation 'com.android.support:appcompat-v7:27.1.1'
35     implementation 'com.android.support.constraint:constraint-layout:1.1.1'
36     implementation 'com.android.support:recyclerview-v7:27.1.1'
37     implementation 'com.android.support:design:27.1.1'
38     implementation 'com.android.support:cardview-v7:27.1.1'
39     implementation 'com.android.support:customtabs:27.1.1'
40     implementation 'com.android.support:multidex:1.0.3'
41
42     // Butterknife
43     implementation 'com.jakewharton:butterknife:8.8.1'
44     annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
45
46     // Retrofit
47     implementation 'com.squareup.retrofit2:retrofit:2.3.0'
48     implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
49     implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
50     implementation 'com.squareup.okhttp3:logging-interceptor:3.7.0'
51
52     // RxJava
53     implementation 'io.reactivex.rxjava2:rxjava:2.1.5'
54     implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
55
56     // Eventbus
57     implementation 'org.greenrobot:eventbus:3.1.1'
58
59     // parceler
60     implementation 'org.parceler:parceler-api:1.1.6'
61     annotationProcessor 'org.parceler:parceler:1.1.6'
62
63     // Glide
64     implementation 'com.github.bumptech.glide:glide:3.7.0'
65
66     // FlowLayout
67     implementation 'com.nex3z:flow-layout:1.1.0'
68
69     // ShimmerEffect
70     implementation 'com.facebook.shimmer:shimmer:0.1.0@aar'
71
72     // htmltextview
73     implementation 'org.sufficientlysecure:html-textview:3.5'
74
75     // Piwik
76     implementation 'org.piwik.sdk:piwik-sdk:3.0.2'
77
78     // SecuredSharedPreferences
79     implementation 'de.adorsys.android:securestoragelibrary:1.0.2'
80
81     // HtmlTextView
82     implementation 'org.sufficientlysecure:html-textview:3.6'
83
84     // ViewPagerIndicator
85     implementation 'me.relex:circleindicator:1.2.2@aar'
86
87     // ZoomView
88     implementation 'it.sephiroth.android.library.imagezoom:imagezoom:2.3.0'
89
90     // Fabric Crashlytics
91     implementation('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {
92         transitive = true
93     }
94
95     // FCM
96     implementation 'com.google.firebase:firebase-core:16.0.3'
97     implementation 'com.google.firebase:firebase-messaging:17.3.0'
98
99     // Tests
100     testImplementation 'junit:junit:4.12'
101     androidTestImplementation 'com.android.support.test:runner:1.0.1'
102     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
103
104     // Folio Reader
105     implementation project(path: ':folioreader')
106 }
107
108 apply plugin: 'com.google.gms.google-services'