feat(app): add an android app that loads beta.rxresu.me through a webview

This commit is contained in:
Amruth Pillai
2022-03-09 22:40:59 +01:00
parent 4fe5788b23
commit 5d54f8101b
37 changed files with 609 additions and 0 deletions

16
app/settings.gradle Normal file
View File

@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Reactive Resume"
include ':app'