-
Notifications
You must be signed in to change notification settings - Fork 96
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
51eb44d
commit ff75e29
Showing
189 changed files
with
1,476 additions
and
905 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,21 @@ | ||
apply plugin: 'kotlin-android' | ||
apply plugin: 'kotlin-android-extensions' | ||
|
||
android { | ||
compileSdkVersion versions.compileSdk | ||
compileSdkVersion Versions.compileSdk | ||
defaultConfig { | ||
minSdkVersion versions.minSdk | ||
targetSdkVersion versions.targetSdk | ||
versionCode 1 | ||
versionName "1.0.0" | ||
minSdkVersion Versions.minSdk | ||
targetSdkVersion Versions.targetSdk | ||
versionCode Releases.versionCode | ||
versionName Releases.versionName | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled true | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation AndroidLibraries.kotlin | ||
} |
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,18 @@ | ||
/** | ||
* Shared dependencies between modules | ||
*/ | ||
dependencies { | ||
// KOTLIN | ||
implementation AndroidLibraries.kotlin | ||
implementation AndroidLibraries.kotlinCoroutineCore | ||
implementation AndroidLibraries.kotlinCoroutineAndroid | ||
// ANDROID | ||
implementation AndroidLibraries.appCompat | ||
implementation AndroidLibraries.coreKtx | ||
implementation AndroidLibraries.constraintLayout | ||
implementation AndroidLibraries.lifecycleViewModel | ||
implementation AndroidLibraries.lifecycleExtensions | ||
implementation AndroidLibraries.recyclerView | ||
implementation AndroidLibraries.navigation | ||
implementation AndroidLibraries.navigationFrag | ||
} |
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,29 @@ | ||
/** | ||
* Feature dependencies | ||
*/ | ||
apply plugin: 'com.android.library' | ||
apply from: '../../android_core_dependencies.gradle' | ||
apply from: '../../android_commons.gradle' | ||
|
||
dependencies { | ||
implementation project(Modules.common) | ||
implementation project(Modules.commonTest) | ||
implementation project(Modules.repository) | ||
implementation project(Modules.navigation) | ||
// KOIN (Because each feature has to handle its dependencies) | ||
implementation Libraries.koin | ||
implementation Libraries.koinViewModel | ||
// TEST | ||
androidTestImplementation TestLibraries.androidTestRunner | ||
androidTestImplementation TestLibraries.junit | ||
androidTestImplementation TestLibraries.mockkAndroid | ||
androidTestImplementation TestLibraries.fragmentNav | ||
androidTestImplementation TestLibraries.espresso | ||
androidTestImplementation TestLibraries.espressoContrib | ||
androidTestImplementation TestLibraries.koin | ||
androidTestImplementation TestLibraries.archCoreTest | ||
testImplementation TestLibraries.junit | ||
testImplementation TestLibraries.mockk | ||
testImplementation TestLibraries.archCoreTest | ||
kaptAndroidTest TestLibraries.databinding | ||
} |
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 |
---|---|---|
@@ -1,14 +1,12 @@ | ||
dependencies { | ||
// ANDROID TEST | ||
androidTestImplementation "androidx.test:runner:${versions.androidTestRunner}" | ||
androidTestImplementation "androidx.test.espresso:espresso-core:${versions.espressoCore}" | ||
androidTestImplementation TestLibraries.androidTestRunner | ||
androidTestImplementation TestLibraries.espresso | ||
// KOIN | ||
androidTestImplementation "org.koin:koin-test:${versions.koin}" | ||
androidTestImplementation TestLibraries.koin | ||
// ANDROID | ||
androidTestImplementation "androidx.arch.core:core-testing:${versions.archCoreTest}" | ||
androidTestImplementation "androidx.test.ext:junit:${versions.androidJunit}" | ||
// MOCK WEBSERVER | ||
androidTestImplementation "com.squareup.okhttp:mockwebserver:${versions.mockwebserver}" | ||
androidTestImplementation TestLibraries.archCoreTest | ||
androidTestImplementation TestLibraries.junit | ||
// MOCK | ||
androidTestImplementation "io.mockk:mockk-android:${versions.mockk}" | ||
androidTestImplementation TestLibraries.mockk | ||
} |
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
24 changes: 0 additions & 24 deletions
24
app/src/androidTest/java/io/philippeboisney/archapp/ExampleInstrumentedTest.kt
This file was deleted.
Oops, something went wrong.
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
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
9 changes: 9 additions & 0 deletions
9
app/src/main/java/io/philippeboisney/archapp/di/AppComponent.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,9 @@ | ||
package io.philippeboisney.archapp.di | ||
|
||
import io.philippeboisney.detail.di.featureDetailModule | ||
import io.philippeboisney.home.di.featureHomeModule | ||
import io.philippeboisney.local.di.localModule | ||
import io.philippeboisney.remote.di.createRemoteModule | ||
import io.philippeboisney.repository.di.repositoryModule | ||
|
||
val appComponent= listOf(createRemoteModule("https://api.github.com/"), repositoryModule, featureHomeModule, featureDetailModule, localModule) |
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 was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
app/src/test/java/io/philippeboisney/archapp/ExampleUnitTest.kt
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,47 +1,33 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
buildscript { scriptHandler -> | ||
apply from: 'repositories.gradle', to: scriptHandler | ||
ext.names = [ | ||
'applicationId': 'io.philippeboisney.archapp' | ||
] | ||
ext.versions = [ | ||
'kotlin' : '1.3.21', | ||
'gradle' : '3.3.2', | ||
'compileSdk' : 28, | ||
'minSdk' : 23, | ||
'targetSdk' : 28, | ||
'appCompat' : '1.1.0-alpha02', | ||
'coreKtx' : '1.1.0-alpha04', | ||
'constraintLayout' : '1.1.3', | ||
'junit' : '4.12', | ||
'androidTestRunner' : '1.1.2-alpha02', | ||
'espressoCore' : '3.2.0-alpha02', | ||
'retrofit' : '2.5.0', | ||
'retrofitCoroutines' : '0.9.2', | ||
'retrofitGson' : '2.4.0', | ||
'gson' : '2.8.5', | ||
'okHttp' : '3.12.1', | ||
'coroutines' : '1.0.1', | ||
'koin' : '1.0.2', | ||
'timber' : '4.7.1', | ||
'lifecycle' : '2.1.0-alpha03', | ||
'nav' : '2.0.0', | ||
'room' : '2.1.0-alpha05', | ||
'recyclerview' : '1.0.0', | ||
'safeArgs' : '2.1.0-alpha01', | ||
'glide' : '4.9.0', | ||
'mockwebserver' : '2.7.5', | ||
'archCoreTest' : '2.0.0', | ||
'androidJunit' : '1.1.0', | ||
'mockk' : '1.9.2' | ||
] | ||
buildscript { | ||
repositories { | ||
google() | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath "com.android.tools.build:gradle:${versions.gradle}" | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}" | ||
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:${versions.safeArgs}" | ||
classpath "com.android.tools.build:gradle:${Versions.gradle}" | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}" | ||
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.safeArgs}" | ||
} | ||
} | ||
|
||
plugins { | ||
id "io.gitlab.arturbosch.detekt" version "1.0.0-RC14" | ||
id "com.github.ben-manes.versions" version "0.20.0" | ||
} | ||
|
||
allprojects { | ||
apply from: "$rootDir/ktlint.gradle" | ||
apply from: "$rootDir/detekt.gradle" | ||
|
||
repositories { | ||
google() | ||
jcenter() | ||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} | ||
|
||
task x(type: GradleBuild) { tasks = ["detekt", "ktlint", "lintDebug", "testDebugUnitTest"] } |
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,9 @@ | ||
import org.gradle.kotlin.dsl.`kotlin-dsl` | ||
|
||
plugins { | ||
`kotlin-dsl` | ||
} | ||
// Required since Gradle 4.10+. | ||
repositories { | ||
jcenter() | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 @@ | ||
/Users/Philippe/Documents/Github/Publics/ArchApp/buildSrc/build/classes/kotlin/main/AndroidLibraries.class:/Users/Philippe/Documents/Github/Publics/ArchApp/buildSrc/build/classes/kotlin/main/ApplicationId.class:/Users/Philippe/Documents/Github/Publics/ArchApp/buildSrc/build/classes/kotlin/main/Libraries.class:/Users/Philippe/Documents/Github/Publics/ArchApp/buildSrc/build/classes/kotlin/main/Modules.class:/Users/Philippe/Documents/Github/Publics/ArchApp/buildSrc/build/classes/kotlin/main/Releases.class:/Users/Philippe/Documents/Github/Publics/ArchApp/buildSrc/build/classes/kotlin/main/TestLibraries.class:/Users/Philippe/Documents/Github/Publics/ArchApp/buildSrc/build/classes/kotlin/main/Versions.class |
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.len
Binary file not shown.
Binary file added
BIN
+12.2 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab_i.len
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...rc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...uild/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
Binary file not shown.
Binary file added
BIN
+9.28 KB
...rc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...rc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...uild/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
Binary file not shown.
Binary file added
BIN
+9.28 KB
...rc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.len
Binary file not shown.
Binary file added
BIN
+3.93 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.values
Binary file not shown.
Binary file added
BIN
+821 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
Binary file not shown.
1 change: 1 addition & 0 deletions
1
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.values.s
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 @@ | ||
�� |
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...dSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
Binary file not shown.
Binary file added
BIN
+1.48 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
Binary file not shown.
2 changes: 2 additions & 0 deletions
2
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/counters.tab
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,2 @@ | ||
15 | ||
14 |
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.len
Binary file not shown.
Binary file added
BIN
+139 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab_i.len
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.len
Binary file not shown.
Binary file added
BIN
+1.38 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab_i.len
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.len
Binary file not shown.
Binary file added
BIN
+22.1 KB
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.values.at
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+8 Bytes
buildSrc/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab_i.len
Binary file not shown.
1 change: 1 addition & 0 deletions
1
buildSrc/build/kotlin/compileKotlin/data-container-format-version.txt
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 @@ | ||
3011001 |
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 @@ | ||
9011001 |
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 @@ | ||
4011001 |
Binary file not shown.
Binary file not shown.
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,8 @@ | ||
src/main/resources | ||
src/main/java | ||
src/main/groovy | ||
src/main/kotlin | ||
src/test/resources | ||
src/test/java | ||
src/test/groovy | ||
src/test/kotlin |
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,2 @@ | ||
Manifest-Version: 1.0 | ||
|
Oops, something went wrong.