Skip to content

Commit

Permalink
Merge pull request #938 from StepicOrg/feature/APPS-3587_m1_support
Browse files Browse the repository at this point in the history
APPS-3587: Support M1
  • Loading branch information
rostikjoystick authored Jan 25, 2022
2 parents 98ebcbf + 9ca5207 commit e30c805
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ allprojects {
dirs 'libs/aars'
}
}

configurations.all {
resolutionStrategy {
force libraries.jdbc
}
}
}

configurations.all {
Expand Down
4 changes: 3 additions & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ ext.versions = [
constraintLayout : '1.1.3',
material : '1.3.0',
fragment : '1.2.5',
room : '2.2.5',
room : '2.3.0',
jdbc : '3.34.0',
browser : '1.3.0',

archComponents : '2.2.0',
Expand Down Expand Up @@ -148,6 +149,7 @@ ext.libraries = [
fragmentKtx : "androidx.fragment:fragment-ktx:$versions.fragment",
room : "androidx.room:room-runtime:$versions.room",
roomCompiler : "androidx.room:room-compiler:$versions.room",
jdbc : "org.xerial:sqlite-jdbc:$versions.jdbc",
browser : "androidx.browser:browser:$versions.browser",

archCompiler : "androidx.lifecycle:lifecycle-common-java8:$versions.archComponents",
Expand Down

0 comments on commit e30c805

Please sign in to comment.