/Users/amandariu/development/a8c/gutenberg-dev/packages/react-native-editor/ios/vendor/bundle/ruby/2.6.0/bin/pod install --repo-update
- What did you do?
| #!/bin/bash | |
| usage() { | |
| echo "Usage: $(basename $0) [package] ..." | |
| } | |
| app_package=$1 | |
| shift | |
| if [ -z $app_package ]; then |
| <?xml version="1.0" encoding="utf-8"?> | |
| <merge | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:focusable="true"> | |
| <TextView | |
| android:id="@+id/switchSetting_title" |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
Kotlin does something strange with boolean types. If you have a boolean called isCanceled, the setter will be setCanceled(boolean) and the getter will be isCanceled(). Override this naming convention:
var isCanceled = false
@JvmName("setIsCanceled")
get| /** | |
| * Toggles the status of a component to enabled or disabled. Specifically used for enabling | |
| * and disabling broadcast receivers. So in the case of a broadcast receiver listening for | |
| * connectivity change...you may not want this always running, rather to toggle it on or off | |
| * as needed. | |
| * | |
| * @param context Application-specific context | |
| * @param componentClass The class to enable or disable | |
| * @param enable Action to be taken on the class | |
| */ |
| # ImageView with support for gesture and double-click zooming and panning. Also supports rotations. | |
| https://github.com/chrisbanes/PhotoView |