Skip to content

Commit 83dfcbb

Browse files
committed
added props
1 parent b1ff657 commit 83dfcbb

3 files changed

Lines changed: 90 additions & 45 deletions

File tree

.gitignore

Lines changed: 70 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,86 @@
1-
# These are some examples of commonly ignored file patterns.
2-
# You should customize this list as applicable to your project.
3-
# Learn more about .gitignore:
4-
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
1+
# Built application files
2+
*.apk
3+
*.aar
4+
*.ap_
5+
*.aab
56

6-
# Node artifact files
7-
node_modules/
8-
dist/
7+
# Files for the ART/Dalvik VM
8+
*.dex
99

10-
.gradle
11-
# Compiled Java class files
10+
# Java class files
1211
*.class
1312

14-
# Compiled Python bytecode
15-
*.py[cod]
13+
# Generated files
14+
bin/
15+
gen/
16+
out/
1617

17-
# Log files
18+
release/
19+
20+
# Gradle files
21+
.gradle/
22+
build/
23+
24+
# Local configuration file (sdk path, etc)
25+
local.properties
26+
27+
# Proguard folder generated by Eclipse
28+
proguard/
29+
30+
# Log Files
1831
*.log
1932

20-
# Package files
21-
# *.jar
33+
# Android Studio Navigation editor temp files
34+
.navigation/
2235

23-
# Maven
24-
target/
36+
# Android Studio captures folder
37+
captures/
2538

26-
# JetBrains IDE
39+
# IntelliJ
40+
*.iml
2741
.idea/
42+
.idea/workspace.xml
43+
.idea/tasks.xml
44+
.idea/gradle.xml
45+
.idea/assetWizardSettings.xml
46+
.idea/dictionaries
47+
.idea/libraries
48+
# Android Studio 3 in .gitignore file.
49+
.idea/caches
50+
.idea/modules.xml
51+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
52+
.idea/navEditor.xml
2853

29-
# Unit test reports
30-
TEST*.xml
54+
# Keystore files
55+
# Uncomment the following lines if you do not want to check your keystore files in.
56+
*.jks
57+
*.keystore
3158

32-
# Generated by MacOS
33-
.DS_Store
59+
# External native build folder generated in Android Studio 2.2 and later
60+
.externalNativeBuild
61+
.cxx/
3462

35-
# Generated by Windows
36-
Thumbs.db
63+
# Google Services (e.g. APIs or Firebase)
64+
# google-services.json
3765

38-
# Applications
39-
*.app
40-
*.exe
41-
*.war
66+
# Freeline
67+
freeline.py
68+
freeline/
69+
freeline_project_description.json
4270

43-
# Large media files
44-
*.mp4
45-
*.tiff
46-
*.avi
47-
*.flv
48-
*.mov
49-
*.wmv
71+
# fastlane
72+
fastlane/report.xml
73+
fastlane/Preview.html
74+
fastlane/screenshots
75+
fastlane/test_output
76+
fastlane/readme.md
5077

51-
*.iml
52-
.gradle
53-
/local.properties
54-
/build
55-
/captures
56-
.externalNativeBuild
57-
.cxx
58-
local.properties
59-
gradle.properties
60-
app/release/
61-
local.properties
78+
# Version control
79+
vcs.xml
80+
81+
# lint
82+
lint/intermediates/
83+
lint/generated/
84+
lint/outputs/
85+
lint/tmp/
86+
# lint/reports/

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
android:icon="@mipmap/ic_launcher"
1010
android:label="@string/app_name"
1111
android:roundIcon="@mipmap/ic_launcher_round"
12+
android:useAndroidX="true"
1213
android:supportsRtl="true"
1314
android:theme="@style/Theme.OpenGraphPreview">
1415
<activity android:name=".MainActivity">

gradle.properties

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Project-wide Gradle settings.
2+
# IDE (e.g. Android Studio) users:
3+
# Gradle settings configured through the IDE *will override*
4+
# any settings specified in this file.
5+
# For more details on how to configure your build environment visit
6+
# http://www.gradle.org/docs/current/userguide/build_environment.html
7+
# Specifies the JVM arguments used for the daemon process.
8+
# The setting is particularly useful for tweaking memory settings.
9+
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
10+
# When configured, Gradle will run in incubating parallel mode.
11+
# This option should only be used with decoupled projects. More details, visit
12+
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13+
# org.gradle.parallel=true
14+
# AndroidX package structure to make it clearer which packages are bundled with the
15+
# Android operating system, and which are packaged with your app"s APK
16+
# https://developer.android.com/topic/libraries/support-library/androidx-rn
17+
android.useAndroidX=true
18+
# Kotlin code style for this project: "official" or "obsolete":
19+
kotlin.code.style=official

0 commit comments

Comments
 (0)