Skip to content

Commit da2c453

Browse files
authored
Add e-mail demo (#5)
* Add email demo * Cleanup repo organization * Fix CI
1 parent 16a3cec commit da2c453

File tree

192 files changed

+5705
-712
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+5705
-712
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
path: |
9797
~/.gradle/wrapper
9898
~/.gradle/caches
99-
key: ${{ runner.os }}-gradle-${{ hashFiles('demo/android/gradle/wrapper/gradle-wrapper.properties') }}
99+
key: ${{ runner.os }}-gradle-${{ hashFiles('demo/serverless/android/gradle/wrapper/gradle-wrapper.properties', 'demo/email/android/gradle/wrapper/gradle-wrapper.properties') }}
100100
restore-keys: |
101101
${{ runner.os }}-gradle-
102102
@@ -141,7 +141,7 @@ jobs:
141141
with:
142142
path: |
143143
**/ios/Pods
144-
key: ${{ runner.os }}-cocoapods-${{ hashFiles('demo/ios/Podfile.lock') }}
144+
key: ${{ runner.os }}-cocoapods-${{ hashFiles('demo/serverless/ios/Podfile.lock', 'demo/email/ios/Podfile.lock') }}
145145
restore-keys: |
146146
${{ runner.os }}-cocoapods-
147147
@@ -164,7 +164,8 @@ jobs:
164164
- name: Install cocoapods
165165
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
166166
run: |
167-
yarn pod-install demo/ios
167+
yarn pod-install demo/serverless/ios
168+
yarn pod-install demo/email/ios
168169
env:
169170
NO_FLIPPER: 1
170171

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,12 @@ android.iml
4242

4343
# Cocoapods
4444
#
45-
demo/ios/Pods
45+
demo/email/ios/Pods
46+
demo/serverless/ios/Pods
4647

4748
# Ruby
48-
demo/vendor/
49+
demo/email/vendor/
50+
demo/serverless/vendor/
4951

5052
# node.js
5153
#

README.md

Lines changed: 20 additions & 3 deletions

demo/app.json

Lines changed: 0 additions & 4 deletions
This file was deleted.
File renamed without changes.

demo/email/README.md

Lines changed: 53 additions & 0 deletions
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
apply plugin: "com.android.application"
2+
apply plugin: "com.facebook.react"
3+
apply plugin: "kotlin-android"
4+
5+
/**
6+
* This is the configuration block to customize your React Native Android app.
7+
* By default you don't need to apply any configuration, just uncomment the lines you need.
8+
*/
9+
react {
10+
/* Folders */
11+
// The root of your project, i.e. where "package.json" lives. Default is '..'
12+
// root = file("../")
13+
// The folder where the react-native NPM package is. Default is ../node_modules/react-native
14+
// reactNativeDir = file("../node_modules/react-native")
15+
// The folder where the react-native Codegen package is. Default is ../node_modules/@react-native/codegen
16+
// codegenDir = file("../node_modules/@react-native/codegen")
17+
// The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js
18+
// cliFile = file("../node_modules/react-native/cli.js")
19+
20+
/* Variants */
21+
// The list of variants to that are debuggable. For those we're going to
22+
// skip the bundling of the JS bundle and the assets. By default is just 'debug'.
23+
// If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
24+
// debuggableVariants = ["liteDebug", "prodDebug"]
25+
26+
/* Bundling */
27+
// A list containing the node command and its flags. Default is just 'node'.
28+
// nodeExecutableAndArgs = ["node"]
29+
//
30+
// The command to run when bundling. By default is 'bundle'
31+
// bundleCommand = "ram-bundle"
32+
//
33+
// The path to the CLI configuration file. Default is empty.
34+
// bundleConfig = file(../rn-cli.config.js)
35+
//
36+
// The name of the generated asset file containing your JS bundle
37+
// bundleAssetName = "MyApplication.android.bundle"
38+
//
39+
// The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
40+
// entryFile = file("../js/MyApplication.android.js")
41+
//
42+
// A list of extra flags to pass to the 'bundle' commands.
43+
// See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
44+
// extraPackagerArgs = []
45+
46+
/* Hermes Commands */
47+
// The hermes compiler command to run. By default it is 'hermesc'
48+
// hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
49+
//
50+
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
51+
// hermesFlags = ["-O", "-output-source-map"]
52+
}
53+
54+
/**
55+
* Set this to true to Run Proguard on Release builds to minify the Java bytecode.
56+
*/
57+
def enableProguardInReleaseBuilds = false
58+
59+
/**
60+
* The preferred build flavor of JavaScriptCore (JSC)
61+
*
62+
* For example, to use the international variant, you can use:
63+
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
64+
*
65+
* The international variant includes ICU i18n library and necessary data
66+
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
67+
* give correct results when using with locales other than en-US. Note that
68+
* this variant is about 6MiB larger per architecture than default.
69+
*/
70+
def jscFlavor = 'org.webkit:android-jsc:+'
71+
72+
android {
73+
ndkVersion rootProject.ext.ndkVersion
74+
75+
compileSdkVersion rootProject.ext.compileSdkVersion
76+
77+
namespace "xyz.juicebox.demo"
78+
defaultConfig {
79+
applicationId "xyz.juicebox.emailDemo"
80+
minSdkVersion rootProject.ext.minSdkVersion
81+
targetSdkVersion rootProject.ext.targetSdkVersion
82+
versionCode 2
83+
versionName "1.0"
84+
}
85+
signingConfigs {
86+
debug {
87+
storeFile file('debug.keystore')
88+
storePassword 'android'
89+
keyAlias 'debug'
90+
keyPassword 'android'
91+
}
92+
}
93+
buildTypes {
94+
debug {
95+
signingConfig signingConfigs.debug
96+
}
97+
release {
98+
// Caution! In production, you need to generate your own keystore file.
99+
// see https://reactnative.dev/docs/signed-apk-android.
100+
signingConfig signingConfigs.debug
101+
minifyEnabled enableProguardInReleaseBuilds
102+
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
103+
}
104+
}
105+
packagingOptions {
106+
pickFirst("META-INF/DEPENDENCIES")
107+
}
108+
}
109+
110+
dependencies {
111+
// The version of react-native is set by the React Native Gradle Plugin
112+
implementation("com.facebook.react:react-android")
113+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0'
114+
implementation 'com.google.android.gms:play-services-auth-blockstore:16.2.0'
115+
116+
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")
117+
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
118+
exclude group:'com.squareup.okhttp3', module:'okhttp'
119+
}
120+
121+
debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")
122+
if (hermesEnabled.toBoolean()) {
123+
implementation("com.facebook.react:hermes-android")
124+
} else {
125+
implementation jscFlavor
126+
}
127+
}
128+
129+
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)

0 commit comments

Comments
 (0)