Commit a536c72c authored by santhosh's avatar santhosh
Browse files

Initial commit

parents
Pipeline #749 failed with stages
Showing with 87 additions and 0 deletions
+87 -0
android/app/src/main/res/mipmap-hdpi/ic_launcher.png

1.77 KB

android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png

2.04 KB

android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png

3.6 KB

android/app/src/main/res/mipmap-mdpi/ic_launcher.png

1.18 KB

android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png

1.28 KB

android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png

2.18 KB

android/app/src/main/res/mipmap-xhdpi/ic_launcher.png

2.41 KB

android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png

2.68 KB

android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png

5.03 KB

android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png

3.7 KB

android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png

4.24 KB

android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png

8 KB

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png

5.16 KB

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png

5.78 KB

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png

11.5 KB

<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
</resources>
\ No newline at end of file
<resources>
<string name="app_name">Agile</string>
</resources>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:textColor">#000000</item>
</style>
</resources>
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 29
targetSdkVersion = 29
}
repositories {
google()
jcenter()
}
dependencies {
classpath('com.android.tools.build:gradle:4.2.0')
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
jcenter()
maven { url 'https://www.jitpack.io' }
}
}
# 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.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -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
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.54.0
MYAPP_UPLOAD_STORE_FILE=my-upload-key.keystore
MYAPP_UPLOAD_KEY_ALIAS=my-key-alias
MYAPP_UPLOAD_STORE_PASSWORD=Novi1234
MYAPP_UPLOAD_KEY_PASSWORD=Novi1234
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment