This repository has been archived by the owner on Sep 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
809a2b1
commit 816c6a6
Showing
104 changed files
with
11,790 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog | ||
|
||
<!-- MarkdownTOC --> | ||
|
||
- [1.0.0](#100) | ||
|
||
<!-- /MarkdownTOC --> | ||
|
||
## 1.0.0 | ||
|
||
- 🎺 Initial release! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/build | ||
/release | ||
/debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
apply plugin: 'kotlin-android' | ||
|
||
apply plugin: 'kotlin-android-extensions' | ||
|
||
apply plugin: 'kotlin-kapt' | ||
|
||
def versionMajor = 1 | ||
def versionMinor = 0 | ||
def versionPatch = 0 | ||
def versionBuild = 0 | ||
|
||
android { | ||
compileSdkVersion 27 | ||
defaultConfig { | ||
applicationId "fr.smarquis.appstore" | ||
minSdkVersion 16 | ||
targetSdkVersion 27 | ||
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild | ||
versionName "${versionMajor}.${versionMinor}.${versionPatch}" | ||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
multiDexEnabled true | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(dir: 'libs', include: ['*.jar']) | ||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version") { | ||
exclude group: 'org.jetbrains', module: 'annotations' | ||
} | ||
implementation 'com.android.support:appcompat-v7:27.1.1' | ||
implementation 'com.android.support:customtabs:27.1.1' | ||
implementation 'com.android.support:cardview-v7:27.1.1' | ||
implementation 'com.android.support:support-v4:27.1.1' | ||
implementation 'com.android.support:recyclerview-v7:27.1.1' | ||
implementation 'com.android.support:design:27.1.1' | ||
implementation 'com.android.support.constraint:constraint-layout:1.1.0' | ||
testImplementation 'junit:junit:4.12' | ||
androidTestImplementation 'com.android.support.test:runner:1.0.2' | ||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' | ||
implementation 'com.firebaseui:firebase-ui-auth:3.2.2' | ||
implementation 'com.firebaseui:firebase-ui-database:3.2.2' | ||
implementation 'com.firebaseui:firebase-ui-storage:3.2.2' | ||
implementation 'com.google.android.gms:play-services-auth:15.0.0' | ||
implementation 'com.google.firebase:firebase-core:15.0.0' | ||
implementation 'com.google.firebase:firebase-auth:15.0.0' | ||
implementation 'com.google.firebase:firebase-database:15.0.0' | ||
implementation 'com.google.firebase:firebase-storage:15.0.0' | ||
implementation 'com.google.firebase:firebase-messaging:15.0.0' | ||
implementation 'androidx.core:core-ktx:0.3' | ||
|
||
implementation ('com.github.bumptech.glide:glide:4.6.1') { | ||
exclude group: "com.android.support" | ||
} | ||
kapt 'com.github.bumptech.glide:compiler:4.6.1' | ||
} | ||
|
||
|
||
|
||
apply plugin: 'com.google.gms.google-services' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Glide | ||
-keep public class * implements com.bumptech.glide.module.GlideModule | ||
-keep public class * extends com.bumptech.glide.module.AppGlideModule | ||
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** { | ||
**[] $VALUES; | ||
public *; | ||
} |
24 changes: 24 additions & 0 deletions
24
app/src/androidTest/java/fr/smarquis/appstore/ExampleInstrumentedTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package fr.smarquis.appstore | ||
|
||
import android.support.test.InstrumentationRegistry | ||
import android.support.test.runner.AndroidJUnit4 | ||
|
||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
|
||
import org.junit.Assert.* | ||
|
||
/** | ||
* Instrumented test, which will execute on an Android device. | ||
* | ||
* See [testing documentation](http://d.android.com/tools/testing). | ||
*/ | ||
@RunWith(AndroidJUnit4::class) | ||
class ExampleInstrumentedTest { | ||
@Test | ||
fun useAppContext() { | ||
// Context of the app under test. | ||
val appContext = InstrumentationRegistry.getTargetContext() | ||
assertEquals("fr.smarquis.appstore", appContext.packageName) | ||
} | ||
} |
Oops, something went wrong.