| @@ -0,0 +1,15 @@ | |||||
| *.iml | |||||
| .gradle | |||||
| /local.properties | |||||
| /.idea/caches | |||||
| /.idea/libraries | |||||
| /.idea/modules.xml | |||||
| /.idea/workspace.xml | |||||
| /.idea/navEditor.xml | |||||
| /.idea/assetWizardSettings.xml | |||||
| .DS_Store | |||||
| /build | |||||
| /captures | |||||
| .externalNativeBuild | |||||
| .cxx | |||||
| local.properties | |||||
| @@ -0,0 +1,26 @@ | |||||
| // Top-level build file where you can add configuration options common to all sub-projects/modules. | |||||
| buildscript { | |||||
| repositories { | |||||
| google() | |||||
| mavenCentral() | |||||
| } | |||||
| dependencies { | |||||
| classpath "com.android.tools.build:gradle:4.2.2" | |||||
| // NOTE: Do not place your application dependencies here; they belong | |||||
| // in the individual module build.gradle files | |||||
| } | |||||
| } | |||||
| allprojects { | |||||
| repositories { | |||||
| google() | |||||
| mavenCentral() | |||||
| jcenter() // Warning: this repository is going to shut down soon | |||||
| maven { url 'https://jitpack.io' } | |||||
| } | |||||
| } | |||||
| task clean(type: Delete) { | |||||
| delete rootProject.buildDir | |||||
| } | |||||
| @@ -0,0 +1,17 @@ | |||||
| # Project-wide Gradle settings. | |||||
| # IDE (e.g. Android Studio) users: | |||||
| # Gradle settings configured through the IDE *will override* | |||||
| # any settings specified in this file. | |||||
| # For more details on how to configure your build environment visit | |||||
| # http://www.gradle.org/docs/current/userguide/build_environment.html | |||||
| # Specifies the JVM arguments used for the daemon process. | |||||
| # The setting is particularly useful for tweaking memory settings. | |||||
| org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 | |||||
| # When configured, Gradle will run in incubating parallel mode. | |||||
| # This option should only be used with decoupled projects. More details, visit | |||||
| # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | |||||
| # org.gradle.parallel=true | |||||
| # AndroidX package structure to make it clearer which packages are bundled with the | |||||
| # Android operating system, and which are packaged with your app"s APK | |||||
| # https://developer.android.com/topic/libraries/support-library/androidx-rn | |||||
| android.useAndroidX=true | |||||
| @@ -0,0 +1,6 @@ | |||||
| #Wed Jul 28 17:22:05 CST 2021 | |||||
| distributionBase=GRADLE_USER_HOME | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip | |||||
| distributionPath=wrapper/dists | |||||
| zipStorePath=wrapper/dists | |||||
| zipStoreBase=GRADLE_USER_HOME | |||||
| @@ -0,0 +1,2 @@ | |||||
| rootProject.name = "nsgk_rural_web" | |||||
| include ':app' | |||||