Skip to content

Commit 04cfcc2

Browse files
Develop to main. Release v1.2 #28
2 parents 91939b3 + ebeef7b commit 04cfcc2

File tree

382 files changed

+5746
-4466
lines changed

Some content is hidden

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

382 files changed

+5746
-4466
lines changed

app/build.gradle

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ plugins {
33
id 'org.jetbrains.kotlin.android'
44
id 'kotlin-parcelize'
55
id 'kotlin-kapt'
6+
id "com.google.firebase.crashlytics"
67
}
78

89
android {
910
compileSdk 33
1011

1112
defaultConfig {
12-
applicationId "com.raccoongang.newedx"
13+
applicationId "org.openedx.app"
1314
minSdk 24
1415
targetSdk 33
1516
versionCode 1
@@ -20,7 +21,7 @@ android {
2021
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2122
}
2223

23-
namespace 'com.raccoongang.newedx'
24+
namespace 'org.openedx.app'
2425

2526
flavorDimensions "tier"
2627
productFlavors {
@@ -63,6 +64,9 @@ android {
6364
enableSplit = true
6465
}
6566
}
67+
testOptions {
68+
unitTests.returnDefaultValues = true
69+
}
6670
}
6771

6872
dependencies {
@@ -76,9 +80,15 @@ dependencies {
7680

7781
kapt "androidx.room:room-compiler:$room_version"
7882

79-
implementation 'androidx.core:core-splashscreen:1.0.0'
80-
testImplementation 'junit:junit:4.13.2'
83+
implementation 'androidx.core:core-splashscreen:1.0.1'
8184

8285
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
8386
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
87+
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
88+
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
89+
testImplementation "junit:junit:$junit_version"
90+
testImplementation "io.mockk:mockk:$mockk_version"
91+
testImplementation "io.mockk:mockk-android:$mockk_version"
92+
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_version"
93+
testImplementation "androidx.arch.core:core-testing:$android_arch_version"
8494
}

app/src/main/AndroidManifest.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</queries>
1313

1414
<application
15-
android:name=".NewEdXApp"
15+
android:name=".OpenEdXApp"
1616
android:allowBackup="false"
1717
android:dataExtractionRules="@xml/data_extraction_rules"
1818
android:fullBackupContent="@xml/backup_rules"
@@ -47,6 +47,11 @@
4747
android:name="android.support.FILE_PROVIDER_PATHS"
4848
android:resource="@xml/file_provider_paths" />
4949
</provider>
50+
51+
<provider android:authorities="${applicationId}.firebaseinitprovider"
52+
android:name="com.google.firebase.provider.FirebaseInitProvider"
53+
android:exported="false"
54+
tools:node="remove"/>
5055
</application>
5156

5257
</manifest>

app/src/main/java/com/raccoongang/newedx/MainFragment.kt

Lines changed: 0 additions & 48 deletions
This file was deleted.

app/src/main/java/com/raccoongang/newedx/NewEdXApp.kt

Lines changed: 0 additions & 24 deletions
This file was deleted.

app/src/main/java/com/raccoongang/newedx/di/AppModule.kt

Lines changed: 0 additions & 105 deletions
This file was deleted.

app/src/main/java/com/raccoongang/newedx/di/ScreenModule.kt

Lines changed: 0 additions & 101 deletions
This file was deleted.

app/src/main/java/com/raccoongang/newedx/room/AppDatabase.kt

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)