Skip to content

Commit

Permalink
Develop to main. Release v1.2 #28
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-chekyrta authored Jul 5, 2023
2 parents 91939b3 + ebeef7b commit 04cfcc2
Show file tree
Hide file tree
Showing 382 changed files with 5,746 additions and 4,466 deletions.
18 changes: 14 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ plugins {
id 'org.jetbrains.kotlin.android'
id 'kotlin-parcelize'
id 'kotlin-kapt'
id "com.google.firebase.crashlytics"
}

android {
compileSdk 33

defaultConfig {
applicationId "com.raccoongang.newedx"
applicationId "org.openedx.app"
minSdk 24
targetSdk 33
versionCode 1
Expand All @@ -20,7 +21,7 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

namespace 'com.raccoongang.newedx'
namespace 'org.openedx.app'

flavorDimensions "tier"
productFlavors {
Expand Down Expand Up @@ -63,6 +64,9 @@ android {
enableSplit = true
}
}
testOptions {
unitTests.returnDefaultValues = true
}
}

dependencies {
Expand All @@ -76,9 +80,15 @@ dependencies {

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

implementation 'androidx.core:core-splashscreen:1.0.0'
testImplementation 'junit:junit:4.13.2'
implementation 'androidx.core:core-splashscreen:1.0.1'

androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
testImplementation "junit:junit:$junit_version"
testImplementation "io.mockk:mockk:$mockk_version"
testImplementation "io.mockk:mockk-android:$mockk_version"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_version"
testImplementation "androidx.arch.core:core-testing:$android_arch_version"
}
7 changes: 6 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</queries>

<application
android:name=".NewEdXApp"
android:name=".OpenEdXApp"
android:allowBackup="false"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
Expand Down Expand Up @@ -47,6 +47,11 @@
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_provider_paths" />
</provider>

<provider android:authorities="${applicationId}.firebaseinitprovider"
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:exported="false"
tools:node="remove"/>
</application>

</manifest>
48 changes: 0 additions & 48 deletions app/src/main/java/com/raccoongang/newedx/MainFragment.kt

This file was deleted.

24 changes: 0 additions & 24 deletions app/src/main/java/com/raccoongang/newedx/NewEdXApp.kt

This file was deleted.

105 changes: 0 additions & 105 deletions app/src/main/java/com/raccoongang/newedx/di/AppModule.kt

This file was deleted.

101 changes: 0 additions & 101 deletions app/src/main/java/com/raccoongang/newedx/di/ScreenModule.kt

This file was deleted.

36 changes: 0 additions & 36 deletions app/src/main/java/com/raccoongang/newedx/room/AppDatabase.kt

This file was deleted.

Loading

0 comments on commit 04cfcc2

Please sign in to comment.