Skip to content

Instantly share code, notes, and snippets.

@icerda
icerda / android-wifi-development.sh
Created June 11, 2019 18:49
Setup wifi for android development
#!/usr/bin/env bash
#Set Listener on the phone
adb tcpip 5555
#Connect to the phone
#adb connect <IP address of your device>:5555
adb connect 192.168.137.57:5555
@icerda
icerda / .gitignore
Created May 28, 2019 00:27
.gitignore for React Native
node_modules/**/*
.expo/*
npm-debug.*
*.jks
*.p12
*.key
*.mobileprovision
# Xcode
!**/*.xcodeproj
@icerda
icerda / upgrade-node-with-nvm.sh
Last active June 6, 2019 20:55
Upgrade node with nvm
nvm install 10.15.3 --reinstall-packages-from=10.15.1
@icerda
icerda / httpd.conf
Created May 3, 2019 04:26
XAMPP/xamppfiles/etc/httpd.conf
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/trunk/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/trunk/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# custom IntelliJ IDEA VM options
-Xms2048m
-Xmx4096m
-XX:MaxPermSize=1024m
-XX:ReservedCodeCacheSize=240m
-XX:+UseCompressedOops
@icerda
icerda / AndroidManifest.xml
Created April 9, 2019 19:33 — forked from erkattak/AndroidManifest.xml
Android Application Setup for use with Charles Proxy
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_security_config">