Compare commits
2 commits
0e741a02e2
...
dfa9548a2f
| Author | SHA1 | Date | |
|---|---|---|---|
| dfa9548a2f | |||
| 4ee7490af4 |
6 changed files with 52 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -25,6 +25,7 @@ DerivedData
|
||||||
#
|
#
|
||||||
build/
|
build/
|
||||||
.idea
|
.idea
|
||||||
|
!.idea/runConfigurations
|
||||||
.gradle
|
.gradle
|
||||||
local.properties
|
local.properties
|
||||||
*.iml
|
*.iml
|
||||||
|
|
|
||||||
12
.idea/runConfigurations/Lint_Check.xml
Normal file
12
.idea/runConfigurations/Lint_Check.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
<component name="ProjectRunConfigurationManager">
|
||||||
|
<configuration default="false" name="Lint Check" type="js.build_tools.npm">
|
||||||
|
<package-json value="$PROJECT_DIR$/package.json" />
|
||||||
|
<command value="run" />
|
||||||
|
<scripts>
|
||||||
|
<script value="lint" />
|
||||||
|
</scripts>
|
||||||
|
<node-interpreter value="project" />
|
||||||
|
<envs />
|
||||||
|
<method v="2" />
|
||||||
|
</configuration>
|
||||||
|
</component>
|
||||||
13
.idea/runConfigurations/Run_Android.xml
Normal file
13
.idea/runConfigurations/Run_Android.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
<component name="ProjectRunConfigurationManager">
|
||||||
|
<configuration default="false" name="Run Android" type="ReactNative" factoryName="React Native">
|
||||||
|
<node-interpreter value="project" />
|
||||||
|
<react-native value="$PROJECT_DIR$/node_modules/react-native" />
|
||||||
|
<platform value="ANDROID" />
|
||||||
|
<envs />
|
||||||
|
<only-packager />
|
||||||
|
<browser value="98ca6316-2f89-46d9-a9e5-fa9e2b0625b3" />
|
||||||
|
<method v="2">
|
||||||
|
<option name="ReactNativePackager" enabled="true" />
|
||||||
|
</method>
|
||||||
|
</configuration>
|
||||||
|
</component>
|
||||||
12
.idea/runConfigurations/Run_Android_Release.xml
Normal file
12
.idea/runConfigurations/Run_Android_Release.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
<component name="ProjectRunConfigurationManager">
|
||||||
|
<configuration default="false" name="Run Android Release" type="js.build_tools.npm">
|
||||||
|
<package-json value="$PROJECT_DIR$/package.json" />
|
||||||
|
<command value="run" />
|
||||||
|
<scripts>
|
||||||
|
<script value="android-release" />
|
||||||
|
</scripts>
|
||||||
|
<node-interpreter value="project" />
|
||||||
|
<envs />
|
||||||
|
<method v="2" />
|
||||||
|
</configuration>
|
||||||
|
</component>
|
||||||
13
.idea/runConfigurations/Run_iOS.xml
Normal file
13
.idea/runConfigurations/Run_iOS.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
<component name="ProjectRunConfigurationManager">
|
||||||
|
<configuration default="false" name="Run iOS" type="ReactNative" factoryName="React Native">
|
||||||
|
<node-interpreter value="project" />
|
||||||
|
<react-native value="$PROJECT_DIR$/node_modules/react-native" />
|
||||||
|
<platform value="IOS" />
|
||||||
|
<envs />
|
||||||
|
<only-packager />
|
||||||
|
<browser value="98ca6316-2f89-46d9-a9e5-fa9e2b0625b3" />
|
||||||
|
<method v="2">
|
||||||
|
<option name="ReactNativePackager" enabled="true" />
|
||||||
|
</method>
|
||||||
|
</configuration>
|
||||||
|
</component>
|
||||||
|
|
@ -136,7 +136,7 @@ android {
|
||||||
applicationId 'fr.amicaleinsat.application'
|
applicationId 'fr.amicaleinsat.application'
|
||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
versionCode 34
|
versionCode 35
|
||||||
versionName "4.0.1"
|
versionName "4.0.1"
|
||||||
missingDimensionStrategy 'react-native-camera', 'general'
|
missingDimensionStrategy 'react-native-camera', 'general'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue