- 松山 さん
- @KeithYokomaku さん
- @konifar さん
- 藤崎 さん
- @operandoOS さん
- @mhidaka さん
This file contains 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
e: /Users/ryugoo/Workspace/GitHub/Personal/PD3Test/app/build/generated/source/kapt/debug/com/r384ta/android/pd3test/MainActivityPermissionsDispatcher.kt: (21, 12): Expecting an expression | |
e: /Users/ryugoo/Workspace/GitHub/Personal/PD3Test/app/build/generated/source/kapt/debug/com/r384ta/android/pd3test/MainActivityPermissionsDispatcher.kt: (21, 12): Expecting ')' | |
e: /Users/ryugoo/Workspace/GitHub/Personal/PD3Test/app/build/generated/source/kapt/debug/com/r384ta/android/pd3test/MainActivityPermissionsDispatcher.kt: (21, 14): Unexpected tokens (use ';' to separate expressions on the same line) | |
e: /Users/ryugoo/Workspace/GitHub/Personal/PD3Test/app/build/generated/source/kapt/debug/com/r384ta/android/pd3test/MainActivityPermissionsDispatcher.kt: (23, 64): Expecting an expression | |
e: /Users/ryugoo/Workspace/GitHub/Personal/PD3Test/app/build/generated/source/kapt/debug/com/r384ta/android/pd3test/MainActivityPermissionsDispatcher.kt: (23, 64): Expecting ')' | |
e: /Users/ryugoo/Workspace/GitHub/Personal/PD3Test/app/buil |
This file contains 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
public final class Either<Left, Right> { | |
private final Optional<Left> left; | |
private final Optional<Right> right; | |
private Either(Optional<Left> left, Optional<Right> right) { | |
this.left = left; | |
this.right = right; | |
} | |
public static <Left, Right> Either<Left, Right> left(@NonNull Left value) { |
This file contains 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.r384ta.android.betterstructure.util; | |
import android.support.annotation.IntDef; | |
import android.support.annotation.Nullable; | |
public class StringUtils { | |
public static final int DEFAULT = 0; | |
public static final int ASCII_TRIM = 1; | |
public static final int FULL_TRIM = 2; |
This file contains 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
buildscript { | |
repositories { | |
google() | |
jcenter() | |
mavenCentral() | |
} | |
} | |
repositories { | |
google() |
This file contains 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 net.imthinker.android.realmenctyption; | |
import android.os.Bundle; | |
import android.support.v7.app.ActionBarActivity; | |
public class MainActivity extends ActionBarActivity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); |
This file contains 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 android.content.Context; | |
import java.io.ByteArrayOutputStream; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.OutputStream; | |
public class Files { |
This file contains 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 android.content.res.Configuration; | |
import android.os.Bundle; | |
import android.support.v4.view.MenuItemCompat; | |
import android.support.v4.widget.DrawerLayout; | |
import android.support.v7.app.ActionBarActivity; | |
import android.support.v7.app.ActionBarDrawerToggle; | |
import android.support.v7.widget.SearchView; | |
import android.util.Log; | |
import android.view.Menu; | |
import android.view.MenuItem; |
This file contains 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
# http://builds.appcelerator.com.s3.amazonaws.com/index.html#3.4.0 | |
# RC2 | |
ti sdk install http://builds.appcelerator.com/mobile/3.4.0/mobilesdk-3.4.0.RC2-osx.zip | |
# RC1 | |
ti sdk install http://builds.appcelerator.com/mobile/3.4.0/mobilesdk-3.4.0.RC-osx.zip |
This file contains 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
class MyClass { | |
// Instance variables | |
var myStr: String | |
// Constructor | |
init() { | |
myStr = "Hello " | |
} | |
// Method |
NewerOlder