Skip to content

Commit 27a971d

Browse files
author
Petter Hesselberg
committed
Indentation change
1 parent 34ddd7e commit 27a971d

File tree

1 file changed

+38
-38
lines changed

1 file changed

+38
-38
lines changed

android/app/build.gradle

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -19,56 +19,56 @@ def bundleInDebug = hasProperty("bundleInDebug") && Boolean.valueOf(property("bu
1919
def useDevSupport = !bundleInDebug
2020

2121
project.ext.react = [
22-
// The name of the generated asset file containing your JS bundle
23-
// bundleAssetName: "index.android.bundle",
22+
// The name of the generated asset file containing your JS bundle
23+
// bundleAssetName: "index.android.bundle",
2424

25-
// The entry file for bundle generation
26-
// entryFile: "index.android.js",
25+
// The entry file for bundle generation
26+
// entryFile: "index.android.js",
2727

28-
// Whether to bundle JS and assets in debug mode. Set this to false if you want to load
29-
// JavaScript from a bundler, true if you want to embed the bundle in the apk.
30-
// Do not change it here; change the property value in gradle.properties instead.
31-
bundleInDebug : bundleInDebug,
28+
// Whether to bundle JS and assets in debug mode. Set this to false if you want to load
29+
// JavaScript from a bundler, true if you want to embed the bundle in the apk.
30+
// Do not change it here; change the property value in gradle.properties instead.
31+
bundleInDebug : bundleInDebug,
3232

33-
// Whether to bundle JS and assets in release mode
34-
bundleInRelease: true,
33+
// Whether to bundle JS and assets in release mode
34+
bundleInRelease: true,
3535

36-
// Whether to bundle JS and assets in another build variant (if configured).
37-
// See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
38-
// The configuration property can be in the following formats
39-
// 'bundleIn${productFlavor}${buildType}'
40-
// 'bundleIn${buildType}'
41-
// bundleInBeta: true,
36+
// Whether to bundle JS and assets in another build variant (if configured).
37+
// See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
38+
// The configuration property can be in the following formats
39+
// 'bundleIn${productFlavor}${buildType}'
40+
// 'bundleIn${buildType}'
41+
// bundleInBeta: true,
4242

43-
// The root of your project, i.e. where "package.json" lives
44-
// root: "../../",
43+
// The root of your project, i.e. where "package.json" lives
44+
// root: "../../",
4545

46-
// Where to put the JS bundle asset in debug mode
47-
// jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
46+
// Where to put the JS bundle asset in debug mode
47+
// jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
4848

49-
// Where to put the JS bundle asset in release mode
50-
// jsBundleDirRelease: "$buildDir/intermediates/assets/release",
49+
// Where to put the JS bundle asset in release mode
50+
// jsBundleDirRelease: "$buildDir/intermediates/assets/release",
5151

52-
// Where to put drawable resources / React Native assets, e.g. the ones you use via
53-
// require('./image.png')), in debug mode
54-
// resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
52+
// Where to put drawable resources / React Native assets, e.g. the ones you use via
53+
// require('./image.png')), in debug mode
54+
// resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
5555

56-
// Where to put drawable resources / React Native assets, e.g. the ones you use via
57-
// require('./image.png')), in release mode
58-
// resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
56+
// Where to put drawable resources / React Native assets, e.g. the ones you use via
57+
// require('./image.png')), in release mode
58+
// resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
5959

60-
// By default the gradle tasks are skipped if none of the JS files or assets change; this means
61-
// that we don't look at files in android/ or ios/ to determine whether the tasks are up to
62-
// date; if you have any other folders that you want to ignore for performance reasons (gradle
63-
// indexes the entire tree), add them here. Alternatively, if you have JS files in android/
64-
// for example, you might want to remove it from here.
65-
// inputExcludes: ["android/**", "ios/**"],
60+
// By default the gradle tasks are skipped if none of the JS files or assets change; this means
61+
// that we don't look at files in android/ or ios/ to determine whether the tasks are up to
62+
// date; if you have any other folders that you want to ignore for performance reasons (gradle
63+
// indexes the entire tree), add them here. Alternatively, if you have JS files in android/
64+
// for example, you might want to remove it from here.
65+
// inputExcludes: ["android/**", "ios/**"],
6666

67-
// Override which node gets called and with what additional arguments
68-
// nodeExecutableAndArgs: ["node"],
67+
// Override which node gets called and with what additional arguments
68+
// nodeExecutableAndArgs: ["node"],
6969

70-
// Supply additional arguments to the packager
71-
// extraPackagerArgs: []
70+
// Supply additional arguments to the packager
71+
// extraPackagerArgs: []
7272
]
7373

7474
apply from: "../../node_modules/react-native/react.gradle"

0 commit comments

Comments
 (0)