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

+4-3
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

+4-2
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

+20-3

demo/app.json

-4
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

demo/email/README.md

+53

demo/email/android/app/build.gradle

+129
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)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
3+
<uses-permission android:name="android.permission.INTERNET" />
4+
5+
<application
6+
android:name=".MainApplication"
7+
android:label="@string/app_name"
8+
android:icon="@mipmap/ic_launcher"
9+
android:roundIcon="@mipmap/ic_launcher_round"
10+
android:allowBackup="false"
11+
android:theme="@style/AppTheme">
12+
<activity
13+
android:name=".MainActivity"
14+
android:label="@string/app_name"
15+
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
16+
android:windowSoftInputMode="adjustResize"
17+
android:exported="true">
18+
<intent-filter>
19+
<action android:name="android.intent.action.MAIN" />
20+
<category android:name="android.intent.category.LAUNCHER" />
21+
</intent-filter>
22+
<intent-filter android:autoVerify="true">
23+
<action android:name="android.intent.action.VIEW" />
24+
<category android:name="android.intent.category.DEFAULT" />
25+
<category android:name="android.intent.category.BROWSABLE" />
26+
<data android:scheme="https"
27+
android:host="demo-backend.juicebox.xyz"/>
28+
</intent-filter>
29+
</activity>
30+
</application>
31+
</manifest>

demo/android/app/src/main/kotlin/xyz/juicebox/demo/MainActivity.kt renamed to demo/email/android/app/src/main/kotlin/xyz/juicebox/demo/MainActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class MainActivity : ReactActivity() {
1212
* rendering of the component.
1313
*/
1414
override fun getMainComponentName(): String? {
15-
return "JuiceboxDemo"
15+
return "EmailDemo"
1616
}
1717

1818
/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
package xyz.juicebox.demo
2+
3+
import android.app.Application
4+
import com.facebook.react.PackageList
5+
import com.facebook.react.ReactApplication
6+
import com.facebook.react.ReactNativeHost
7+
import com.facebook.react.ReactPackage
8+
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
9+
import com.facebook.react.defaults.DefaultReactNativeHost
10+
import com.facebook.soloader.SoLoader
11+
12+
class MainApplication : Application(), ReactApplication {
13+
private val mReactNativeHost: ReactNativeHost = object : DefaultReactNativeHost(this) {
14+
override fun getUseDeveloperSupport(): Boolean {
15+
return BuildConfig.DEBUG
16+
}
17+
18+
override fun getPackages(): List<ReactPackage> {
19+
return PackageList(this).packages
20+
}
21+
22+
override fun getJSMainModuleName(): String {
23+
return "index"
24+
}
25+
26+
override val isNewArchEnabled: Boolean
27+
protected get() = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
28+
override val isHermesEnabled: Boolean
29+
protected get() = BuildConfig.IS_HERMES_ENABLED
30+
}
31+
32+
override fun getReactNativeHost(): ReactNativeHost {
33+
return mReactNativeHost
34+
}
35+
36+
override fun onCreate() {
37+
super.onCreate()
38+
SoLoader.init(this, /* native exopackage */false)
39+
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
40+
// If you opted-in for the New Architecture, we load the native entry point for this app.
41+
load()
42+
}
43+
ReactNativeFlipper.initializeFlipper(this, reactNativeHost.reactInstanceManager)
44+
}
45+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rootProject.name = 'JuiceboxDemo'
1+
rootProject.name = 'EmailDemo'
22
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
33
include ':app'
44
includeBuild('../node_modules/@react-native/gradle-plugin')

demo/email/app.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "EmailDemo",
3+
"displayName": "EmailDemo"
4+
}
File renamed without changes.
File renamed without changes.

demo/babel.config.js renamed to demo/email/babel.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const path = require('path');
2-
const pak = require('../package.json');
2+
const pak = require('../../package.json');
33

44
module.exports = {
55
presets: ['module:metro-react-native-babel-preset'],
@@ -9,7 +9,7 @@ module.exports = {
99
{
1010
extensions: ['.tsx', '.ts', '.js', '.json'],
1111
alias: {
12-
[pak.name]: path.join(__dirname, '..', pak.source),
12+
[pak.name]: path.join(__dirname, '..', '..', pak.source),
1313
},
1414
},
1515
],

demo/email/index.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import 'text-encoding-polyfill';
2+
import 'react-native-url-polyfill/auto';
3+
import { AppRegistry } from 'react-native';
4+
import App from './src/App';
5+
import { name as appName } from './app.json';
6+
7+
AppRegistry.registerComponent(appName, () => App);
File renamed without changes.

0 commit comments

Comments
 (0)