forked from expo/expo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
164 lines (150 loc) · 5.55 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// Top-level build file where you can add configuration options common to all sub-projects/modules.
import com.android.build.api.variant.AndroidComponentsExtension
buildscript {
ext {
minSdkVersion = 23
targetSdkVersion = 34
compileSdkVersion = 34
dbFlowVersion = '4.2.4'
buildToolsVersion = '34.0.0'
kotlinVersion = '1.8.10'
gradleDownloadTaskVersion = '5.0.1'
repositoryUrl = "file:${System.env.HOME}/.m2/repository/"
ndkVersion = "25.1.8937393"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath expoLibs.android.gradle.plugin
classpath 'com.google.gms:google-services:4.3.5'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.6'
classpath "de.undercouch:gradle-download-task:$gradleDownloadTaskVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
// WHEN_DISTRIBUTING_REMOVE_FROM_HERE
classpath "com.facebook.react:react-native-gradle-plugin"
// WHEN_DISTRIBUTING_REMOVE_TO_HERE
}
}
plugins {
alias libs.plugins.android.application apply false
alias libs.plugins.android.library apply false
alias libs.plugins.kotlin.android apply false
alias libs.plugins.download apply false
}
// WHEN_DISTRIBUTING_REMOVE_FROM_HERE
// We don't need linter on turtle.
plugins {
id "com.diffplug.spotless" version "6.23.3"
}
// WHEN_DISTRIBUTING_REMOVE_TO_HERE
def reactProperties = new Properties()
file("${project(':packages:react-native:ReactAndroid').projectDir}/gradle.properties").withInputStream { reactProperties.load(it) }
allprojects {
repositories {
// For non-detach
maven {
url "$rootDir/maven"
}
// For old expoviews to work
maven {
url "$rootDir/versioned-abis/maven"
}
google()
mavenCentral {
// We don't want to fetch react-native from Maven Central as there are
// older versions over there.
content {
excludeGroup "com.facebook.react"
}
}
maven {
// Local Maven repo containing AARs with JSC built for Android
url "$rootDir/../node_modules/jsc-android/dist"
}
maven {
// Local expo-camera Maven repo containing our slightly modified
// Google's cameraview from expo/cameraview.
url "$rootDir/../packages/expo-camera/android/maven"
}
flatDir {
dirs 'libs'
// dirs project(':expoview').file('libs')
}
maven { url "https://jitpack.io" }
// Want this last so that we never end up with a stale cache
mavenLocal()
}
configurations.all {
// WHEN_DISTRIBUTING_REMOVE_FROM_HERE
resolutionStrategy.dependencySubstitution {
substitute(module("com.facebook.react:react-native"))
.using(project(":packages:react-native:ReactAndroid"))
.because("Building React Native from source")
substitute(module("com.facebook.react:react-native:+"))
.using(project(":packages:react-native:ReactAndroid"))
.because("Building React Native from source")
substitute(module("com.facebook.react:react-android"))
.using(project(":packages:react-native:ReactAndroid"))
.because("Building React Native from source")
}
// WHEN_DISTRIBUTING_REMOVE_TO_HERE
resolutionStrategy.force(
libs.fresco,
libs.fresco.imagepipeline.okhttp3,
libs.fresco.ui.common
)
}
}
// This var needs to be defined outside any "remove_from_here" comment blocks
// because the "*/" in there could affect the resulted code by closing the comment to early.
def ktlintTarget = '**/*.kt'
// WHEN_DISTRIBUTING_REMOVE_FROM_HERE
// We don't need linter on turtle.
subprojects { project ->
if (project.name == "ReactAndroid") { return; }
if (project.name.startsWith("vendored_")) { return; }
plugins.apply("com.diffplug.spotless")
spotless {
format 'gradle', {
target '*.gradle'
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
kotlin {
target(ktlintTarget)
// TODO: (barthap) Replace this with raw string when dropped shell app macros
// The star "*" signs interferes with slash "/" and treated wildcard path as comment ¯\_(ツ)_/¯
targetExclude(["**", "versioned/host/exp/exponent/modules/api", "**", "*.kt"].join("/"))
ktlint("1.0.1")
.editorConfigOverride([
"ktlint_standard_no-wildcard-imports" : "disabled",
"ktlint_standard_import-ordering" : "disabled",
"ktlint_standard_filename" : "disabled",
"ktlint_standard_property-naming" : "disabled",
"ktlint_standard_discouraged-comment-location" : "disabled",
"ktlint_standard_comment-wrapping" : "disabled",
"ktlint_standard_function-naming" : "disabled",
"ktlint_standard_class-naming" : "disabled",
"ktlint_standard_package-name" : "disabled",
"ktlint_standard_multiline-expression-wrapping" : "disabled",
"charset" : "utf-8",
"end_of_line" : "lf",
"indent_size" : "2",
"continuation_indent_size" : "2",
"indent_style" : "space",
"insert_final_newline" : "true",
"tab_width" : "2",
"trim_trailing_whitespace" : "true",
"ij_kotlin_allow_trailing_comma_on_call_site": "false",
"ij_kotlin_allow_trailing_comma": "false"
])
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
}
}
// WHEN_DISTRIBUTING_REMOVE_TO_HERE