Skip to content

Commit caa116f

Browse files
committed
v0.1.0-alpha
1 parent 4f7f020 commit caa116f

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

.idea/caches/build_file_checksums.ser

0 Bytes
Binary file not shown.

app/build.gradle

+15-8
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,40 @@ android {
77
minSdkVersion 21
88
targetSdkVersion 27
99
versionCode 1
10-
versionName "1.0"
10+
versionName '0.1.0'
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12+
versionNameSuffix 'alpha'
1213
}
1314
buildTypes {
1415
release {
1516
minifyEnabled false
1617
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1718
}
1819
}
20+
productFlavors {
21+
}
1922
}
2023

2124
repositories {
2225
jcenter()
2326
}
2427

2528
dependencies {
26-
implementation fileTree(dir: 'libs', include: ['*.jar'])
29+
implementation fileTree(include: ['*.jar'], dir: 'libs')
2730
implementation 'com.android.support:appcompat-v7:27.1.0'
28-
implementation "com.android.support:support-compat:27.1.0"
31+
implementation 'com.android.support:support-compat:27.1.0'
2932
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
3033
implementation 'com.android.support:design:27.1.0'
31-
implementation 'com.afollestad.material-dialogs:core:0.9.6.0' // https://github.com/afollestad/material-dialogs
34+
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
35+
// https://github.com/afollestad/material-dialogs
3236
implementation 'yogesh.firzen:MukkiyaSevaigal:1.0.6'
33-
implementation "com.leinardi.android:speed-dial:1.0-alpha03" // https://github.com/leinardi/FloatingActionButtonSpeedDial
34-
implementation 'com.shehabic.droppy:Droppy:0.6.0@aar' // https://github.com/shehabic/Droppy
35-
implementation 'ru.bartwell:exfilepicker:2.4' // https://github.com/bartwell/ExFilePicker
36-
implementation "com.mikepenz:iconics-core:3.0.3@aar"
37+
implementation 'com.leinardi.android:speed-dial:1.0-alpha03'
38+
// https://github.com/leinardi/FloatingActionButtonSpeedDial
39+
implementation 'com.shehabic.droppy:Droppy:0.6.0@aar'
40+
// https://github.com/shehabic/Droppy
41+
implementation 'ru.bartwell:exfilepicker:2.4'
42+
// https://github.com/bartwell/ExFilePicker
43+
implementation 'com.mikepenz:iconics-core:3.0.3@aar'
3744
implementation 'com.mikepenz:community-material-typeface:2.0.46.1@aar'
3845
implementation 'com.mikepenz:fontawesome-typeface:5.0.6.0@aar'
3946
testImplementation 'junit:junit:4.12'

app/release/output.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"0.1.0alpha","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.1.0'
10+
classpath 'com.android.tools.build:gradle:3.1.1'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)