Skip to content

Commit

Permalink
Merge pull request #233 from dis-moi/poc/webview_accessibility
Browse files Browse the repository at this point in the history
New content analyzis
  • Loading branch information
JalilArfaoui authored Sep 28, 2021
2 parents 32fc80b + 399f6c7 commit 5231eea
Show file tree
Hide file tree
Showing 17 changed files with 848 additions and 363 deletions.
29 changes: 19 additions & 10 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}

defaultConfig {
applicationId "com.dismoi.scout"
Expand Down Expand Up @@ -193,19 +196,30 @@ applicationVariants.all { variant ->

dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+" // From node_modules

implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation 'org.jsoup:jsoup:1.10.3'
implementation 'android.arch.work:work-runtime-ktx:1.0.0-beta02'

implementation "com.android.support:cardview-v7:28.0.0"
implementation 'com.google.android.material:material:1.3.0'

implementation "androidx.core:core-ktx:1.3.2"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.lifecycle:lifecycle-service:2.3.1'
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.recyclerview:recyclerview:1.2.0'

implementation 'com.google.android.material:material:1.3.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2'

implementation "com.facebook.react:react-native:+" // From node_modules

implementation 'com.synnapps:carouselview:0.1.5'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'

// implementation "net.sourceforge.htmlcleaner:htmlcleaner:2.16"

debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
exclude group:'com.facebook.fbjni'
Expand All @@ -227,11 +241,6 @@ dependencies {
} else {
implementation jscFlavor
}
implementation "androidx.core:core-ktx:1.3.2"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation "com.android.support:cardview-v7:28.0.0"
implementation "net.sourceforge.htmlcleaner:htmlcleaner:2.16"
}

// Run this once to be able to run the application with BUCK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class MainApplication : Application(), ReactApplication {
override fun onCreate() {
super.onCreate()
SoLoader.init(this, /* native exopackage */false)
initializeFlipper(this, reactNativeHost.reactInstanceManager)
// initializeFlipper(this, reactNativeHost.reactInstanceManager)
}

companion object {
Expand Down
Loading

0 comments on commit 5231eea

Please sign in to comment.