This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tasks.register("myTask") { | |
| println("Configuration") | |
| doFirst { | |
| println("1") | |
| } | |
| doLast { | |
| println("2") | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -e | |
| set -u | |
| set -o pipefail | |
| function on_error { | |
| echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" | |
| } | |
| trap 'on_error $LINENO' ERR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (c) Facebook, Inc. and its affiliates. | |
| * | |
| * This source code is licensed under the MIT license found in the | |
| * LICENSE file in the root directory of this source tree. | |
| */ | |
| #if __OBJC__ | |
| #import <Foundation/Foundation.h> | |
| #endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const showVideoOverlay = useSharedValue(0 as number); | |
| const [overlayVisible, setOverlayVisible] = useState(false as boolean); | |
| const videoOverlayStyle = useAnimatedStyle(() => { | |
| return { | |
| opacity: showVideoOverlay.value, | |
| }; | |
| }); | |
| const showVideo = () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.myapp; | |
| import android.app.Application; | |
| import com.facebook.react.ReactApplication; | |
| import com.facebook.react.ReactNativeHost; | |
| import com.facebook.react.ReactPackage; | |
| import com.facebook.react.shell.MainReactPackage; | |
| import com.facebook.soloader.SoLoader; | |
| import com.myapp.generated.BasePackageList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.doingmything; | |
| // "com.doingmything" should be your app package name | |
| import com.doingmything.generated.BasePackageList; | |
| import android.app.Application; | |
| import android.util.Log; | |
| import org.unimodules.adapters.react.ModuleRegistryAdapter; | |
| import org.unimodules.adapters.react.ReactModuleRegistryProvider; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <UIKit/UIKit.h> | |
| #import <UMReactNativeAdapter/UMModuleRegistryAdapter.h> | |
| #import <React/RCTBridgeDelegate.h> | |
| #import <UMCore/UMAppDelegateWrapper.h> | |
| @interface AppDelegate : UMAppDelegateWrapper <RCTBridgeDelegate> | |
| @property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter; | |
| @property (nonatomic, strong) UIWindow *window; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.myapp; | |
| import android.app.Application; | |
| import com.facebook.react.ReactApplication; | |
| import com.facebook.react.ReactNativeHost; | |
| import com.facebook.react.ReactPackage; | |
| import com.facebook.react.shell.MainReactPackage; | |
| import com.facebook.soloader.SoLoader; | |
| import com.myapp.generated.BasePackageList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.doingmything; | |
| // "com.doingmything" should be your app package name | |
| import com.doingmything.generated.BasePackageList; | |
| import android.app.Application; | |
| import android.util.Log; | |
| import org.unimodules.adapters.react.ModuleRegistryAdapter; | |
| import org.unimodules.adapters.react.ReactModuleRegistryProvider; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <UIKit/UIKit.h> | |
| #import <UMReactNativeAdapter/UMModuleRegistryAdapter.h> | |
| #import <React/RCTBridgeDelegate.h> | |
| #import <UMCore/UMAppDelegateWrapper.h> | |
| @interface AppDelegate : UMAppDelegateWrapper <RCTBridgeDelegate> | |
| @property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter; | |
| @property (nonatomic, strong) UIWindow *window; |
NewerOlder