Skip to content

Commit 7f2c046

Browse files
Merge pull request #34 from Omega-R/develop
Develop
2 parents 627138a + e231a28 commit 7f2c046

File tree

110 files changed

+2225
-766
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+2225
-766
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@
1111
/build
1212
/captures
1313
.externalNativeBuild
14+
lib/build/generated
15+
lib/build

.idea/codeStyles/Project.xml

Lines changed: 110 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dictionaries/R12.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dictionaries/antonknyazev.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

annotations/build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
apply plugin: 'kotlin'
2+
apply plugin: 'com.github.dcendents.android-maven'
3+
group = 'com.github.Omega-R.OmegaBase'
4+
5+
dependencies {
6+
implementation fileTree(dir: 'libs', include: ['*.jar'])
7+
//noinspection DifferentStdlibGradleVersion
8+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
9+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.omega_r.base.annotations
2+
3+
@Retention(AnnotationRetention.SOURCE)
4+
@Target(allowedTargets = [AnnotationTarget.CLASS])
5+
annotation class AppOmegaRepository

app/build.gradle

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ android {
77
compileSdkVersion 28
88
defaultConfig {
99
applicationId "com.omega_r.omegabase.simple"
10+
multiDexEnabled true
1011
minSdkVersion 14
1112
targetSdkVersion 28
1213
versionCode 1
@@ -39,18 +40,22 @@ android {
3940
dependencies {
4041
implementation fileTree(include: ['*.jar'], dir: 'libs')
4142
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlin_version}"
42-
implementation 'androidx.appcompat:appcompat:1.1.0-alpha05'
43-
implementation 'androidx.core:core-ktx:1.1.0-beta01'
43+
implementation 'androidx.appcompat:appcompat:1.1.0'
44+
implementation 'androidx.core:core-ktx:1.2.0-rc01'
4445
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${kotlinCorutines_version}"
4546
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${kotlinCorutines_version}"
46-
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha5'
47-
testImplementation 'junit:junit:4.13-beta-3'
48-
androidTestImplementation 'androidx.test:runner:1.2.0-beta01'
49-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-beta01'
50-
implementation project(':lib')
51-
kapt 'com.github.Omega-R.OmegaMoxy:moxy-compiler:1.7.0'
47+
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta3'
48+
implementation 'androidx.recyclerview:recyclerview:1.1.0'
49+
50+
implementation project(':core')
51+
kapt 'com.github.Omega-R.OmegaMoxy:moxy-compiler:1.7.1'
52+
kapt project(':processor')
53+
5254
implementation 'com.github.bumptech.glide:glide:4.9.0'
5355

56+
testImplementation 'junit:junit:4.13-beta-3'
57+
androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
58+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'
5459

5560

5661
}

0 commit comments

Comments
 (0)