gem which gem名
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
| $ ./gradlew :app:dependencies | |
| current task: :app:dependencies | |
| single_task: :app:dependencies | |
| **************************************************** | |
| * CONFIGURATION | |
| * TASK: :app:dependencies | |
| * SDK_FLAVOR: Production | |
| * SDK_BUILD TYPE: Release | |
| * aviarySdkPackageName: com.aviary.android.feather.sdk | |
| * aviarySdkVersionName: 3.4.3 |
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
| $ git status |
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
| ~ $ brew update | |
| Updated Homebrew from a0b1aab2 to 51a9003a. |
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
| PictureCallback jpegCallback=new PictureCallback(){ | |
| @Override | |
| public void onPictureTaken(byte[] data, Camera camera) { | |
| if(data !=null){ | |
| /* I use Galaxy S3 and Supported PictureSize was width = 3264px, height = 2448px, prop = 1.3333334 | |
| Because inSampleSize should be integer, I set maxSize a fraction of srcSize(Supported Picturesize) | |
| */ | |
| int maxSize = 816; | |
| mCamera.stopPreview(); |
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
| //Acquiring an accelerometer sensor data without gravity data | |
| import java.util.List; | |
| import android.hardware.Sensor; | |
| import android.hardware.SensorEvent; | |
| import android.hardware.SensorEventListener; | |
| import android.hardware.SensorManager; | |
| public class SensorAdapter implements SensorEventListener{ |
NewerOlder