Ref: https://gist.github.com/mariusdkm/65922612e78819a569f8d5eb2ae337e9
Installs lldb-mi using macports. This is if you are using brew.
- ensure llvm is installed
brew install llvm
| { | |
| "added_tokens_decoder": { | |
| "0": { | |
| "content": "<unk>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false, | |
| "special": true | |
| }, |
Ref: https://gist.github.com/mariusdkm/65922612e78819a569f8d5eb2ae337e9
Installs lldb-mi using macports. This is if you are using brew.
brew install llvm
| testCompile 'io.appium:java-client:4.0.0' | |
| testCompile('org.seleniumhq.selenium:selenium-java:2.53.1') | |
| testCompile 'info.cukes:cucumber-java:1.2.4', 'info.cukes:cucumber-junit:1.2.4' | |
| import java.util.ArrayList; | |
| public class Bill { | |
| public static void main(String[] args) { | |
| Store store = new Store(); | |
| store.add("Quaker", 1); | |
| store.add("Kellogs", 2); | |
| store.add("Milk", 4); | |
| store.add("Cashew", 5); |
| package com.shankara.bill; | |
| public class Bill { | |
| public static void main(String[] args) { | |
| int[] prices = {1, 2, 3, 4}; | |
| int[] quantities = {10, 5, 10, 5}; | |
| String[] names = new String[]{"Quaker", "Kellogs", "Chocos", "Milk"}; | |
| System.out.println("Name\t\tPrice\tQty\t\tTotal"); | |
| int grandTotal = 0; | |
| for (int i = 0; i < names.length; i++) { |
| package me.creativei.listener; | |
| import android.os.Handler; | |
| import android.os.Message; | |
| import android.view.HapticFeedbackConstants; | |
| import android.view.MotionEvent; | |
| import android.view.View; | |
| import android.widget.Button; | |
| public class ContinuousLongClickListener implements View.OnTouchListener, View.OnLongClickListener { |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| tools:context="${relativePackage}.${activityClass}" > | |
| <TextView | |
| android:id="@+id/main_text" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" |
| package me.creativei.instructionsoverlay; | |
| import android.content.SharedPreferences; | |
| import android.os.Bundle; | |
| import android.support.v7.app.ActionBarActivity; | |
| import android.view.Menu; | |
| import android.view.MenuItem; | |
| import android.view.View; | |
| public class MainActivity extends ActionBarActivity { |
| package com.creativei.viewpagerloop; | |
| import android.os.Bundle; | |
| import android.support.v4.app.Fragment; | |
| import android.support.v4.app.FragmentManager; | |
| import android.support.v4.app.FragmentStatePagerAdapter; | |
| import android.support.v4.view.ViewPager; | |
| import android.support.v4.view.ViewPager.OnPageChangeListener; | |
| import android.support.v7.app.ActionBarActivity; | |
| import android.util.Log; |
| <key>JVMCapabilities</key> | |
| <array> | |
| <string>JNI</string> | |
| <string>BundledApp</string> | |
| <string>WebStart</string> | |
| <string>Applets</string> | |
| <string>CommandLine</string> | |
| </array> |