$ rm -rf workspace/.metadata/.plugins/org.eclipse.dltk.core.index.sql.h2/and start your eclipse again.
see also:
$ rm -rf workspace/.metadata/.plugins/org.eclipse.dltk.core.index.sql.h2/and start your eclipse again.
Intent intent = new Intent("com.android.camera.action.CROP"); /* Not work. ActivityNotFoundException occurs. */ //intent.setType("image/*"); //intent.setData(uri); intent.setDataAndType(uri, "image/*"); // works! startActivityForResult(intent, REQUEST_CODE_IMAGE_CROP);(マジ?)
ただし、現時点ではChromecast用アプリを国内のGoogle Play/iTunesアカウントから入手することができず、使用するのは難しい状態。どちらのアカウントでも「このアプリは日本では利用できない」という旨のメッセージが表示され、端末にアプリを導入することはできなかった。そう、正規ルートだとChromecast設定用アプリを入手することは出来ない。けど、
2012(16GBモデル) | 2013(16GB/WiFiモデル) | ||
---|---|---|---|
androidバージョン | 4.3 | 4.3 | |
モデル番号 | Nexus 7 | Nexus 7 | |
カーネルバージョン | 3.1.10-g1e8b3d8 | 3.4.0-g6537a16 | |
ビルド番号 | JWR66Y | JSS15Q | |
ディスプレイ | インチ | 7.3 | 6.8 |
Density | tvdpi(213dpi) | xhdpi(320dpi) | |
解像度(px) | 800x1280 | 1200x1920 | |
解像度(dp) | 601.5x962.4 | 600x960 | |
Size | large | large | |
Aspect ratio | notlong | notlong | |
おまけ | 重さ | 340g | 290g(ちょい軽い!) |
厚さ | 10.45mm | 8.65mm(ちょい薄い!) | |
バッテリー | 4325mAH | 3950mAH(え!?) | |
RAM | 1GB | 2GB | |
CPU | 1.2GHz (NVIDIA Tegra 3) | 1.5 GHz (Qualcomm Snapdragon S4 Pro) | |
お値段(Google Play) | ¥19,800 | ¥27,800 |
Could not authenticate you (header rejected by twitter).って言われちゃう。
X-Verify-Credentials-Authorization (Required) Header Example 1 OAuth realm="http://api.twitter.com/", 2 oauth_consumer_key="GDdmIQH6jhtmLUypg82g", 3 oauth_signature_method="HMAC-SHA1", 4 oauth_token="819797-Jxq8aYUDRmykzVKrgoLhXSq67TEa5ruc4GJC2rWimw", 5 oauth_timestamp="1272325550", 6 oauth_nonce="oElnnMTQIZvqvlfXM56aBLAf5noGD0AQR3Fmi7Q6Y", 7 oauth_version="1.0", 8 oauth_signature="U1obTfE7Rs9J1kafTGwufLJdspo%3D" X-Auth-Service-Provider (Required) https://api.twitter.com/1/account/verify_credentials.jsonって書いてあるんだけど、X-Auth-Service-Providerを
https://api.twitter.com/1.1/account/verify_credentials.jsonにするのはもちろん、oauth_signatureを作っているURLも
https://api.twitter.com/1.1/statuses/update.jsonとかにする必要があったです。はい。
$ ./bin/hbase shell Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. Error occurred during initialization of VM Could not reserve enough space for heap offset array
$ vi conf/hbase-env.sh export _JAVA_OPTIONS='-Xmx256m -Xms64m' # Extra Java CLASSPATH elements. Optional. # export HBASE_CLASSPATH= # The maximum amount of heap to use, in MB. Default is 1000. export HBASE_HEAPSIZE=128
LANGUAGE=ja_JP:zh_CN:en LANG=ja_JP.UTF-8 LC_NUMERIC=ja_JP.UTF-8 LC_TIME=ja_JP.UTF-8 LC_MONETARY=ja_JP.UTF-8 LC_PAPER=ja_JP.UTF-8 LC_NAME=ja_JP.UTF-8 LC_ADDRESS=ja_JP.UTF-8 LC_TELEPHONE=ja_JP.UTF-8 LC_MEASUREMENT=ja_JP.UTF-8 LC_IDENTIFICATION=ja_JP.UTF-8
LANGUAGE=ja_JP:en
$ sudo vi /etc/default/grubEdit "GRUB_CMDLINE_LINUX_DEFAULT" like this,
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash console=tty1"
$ sudo update-grub
![]() |
Android SDK Manager |
![]() |
Add a reference to a library project |
// Extends com.google.android.vending.expansion.downloader.impl.DownloaderService class and override three methods. public class ExpansionFileDownloaderService extends DownloaderService { // the Base64-encoded RSA public key for your publisher account private static final String PUBLIC_KEY = "{YOU_PUBLIC_KEY}"; // Generate 20 random bytes, and put them here. private static final byte[] SALT = new byte[] {}; @Override public String getPublicKey() { return PUBLIC_KEY; } @Override public byte[] getSALT() { return SALT; } @Override public String getAlarmReceiverClassName() { return ExpansionFileAlarmReceiver.class.getName(); } }
public class ExpansionFileAlarmReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { try { DownloaderClientMarshaller.startDownloadServiceIfRequired( context, intent, ExpansionFileDownloaderService.class); } catch (NameNotFoundException e) { Log.e("apk-expansion-files", "NameNotFoundException occurred. " + e.getMessage(), e); } } }
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // Check whether the file have been downloaded. String mainFileName = Helpers.getExpansionAPKFileName(this, true, 1); boolean fileExists = Helpers.doesFileExist(this, mainFileName, 32921796L, false); if (!fileExists) { Intent launcher = getIntent(); Intent fromNotification = new Intent(this, getClass()); fromNotification.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); fromNotification.setAction(launcher.getAction()); if (launcher.getCategories() != null) { for (String cat : launcher.getCategories()) { fromNotification.addCategory(cat); } } PendingIntent pendingIntent = PendingIntent.getActivity( this, 0, fromNotification, PendingIntent.FLAG_UPDATE_CURRENT); try { // Start the download int result = DownloaderClientMarshaller.startDownloadServiceIfRequired( this, pendingIntent, ExpansionFileDownloaderService.class); if (DownloaderClientMarshaller.NO_DOWNLOAD_REQUIRED != result) { // implement Downloading UI. return; } } catch (NameNotFoundException e) { Log.e("apk-expansion-files", "NameNotFoundException occurred. " + e.getMessage(), e); } } // expansion file is available. start your application. }
<!-- Required to access Android Market Licensing --> <uses-permission android:name="com.android.vending.CHECK_LICENSE" /> <!-- Required to download files from Android Market --> <uses-permission android:name="android.permission.INTERNET" /> <!-- Required to keep CPU alive while downloading files (NOT to keep screen awake) --> <uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Required to poll the state of the network connection and respond to changes --> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- Required to check whether Wi-Fi is enabled --> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> <!-- Required to read and write the expansion files on shared storage --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name"> <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name=".ExpansionFileDownloaderService" android:label="@string/app_name" /> <receiver android:name=".ExpansionFileAlarmReceiver" android:label="@string/app_name" /> </application>
![]() |
Uploading APK and Expansion file. |
private void scheduleTimeoutLocked(ToastRecord r, boolean immediate) { Message m = Message.obtain(mHandler, MESSAGE_TIMEOUT, r); long delay = immediate ? 0 : (r.duration == Toast.LENGTH_LONG ? LONG_DELAY : SHORT_DELAY); mHandler.removeCallbacksAndMessages(r); mHandler.sendMessageDelayed(m, delay); }
private static final int LONG_DELAY = 3500; // 3.5 seconds private static final int SHORT_DELAY = 2000; // 2 seconds
make: *** [out/host/linux-x86/obj/STATIC_LIBRARIES/libMesa_intermediates/src/glsl/linker.o] エラー1
I'm hitting this too. The bug is the use of the offsetof() macro. Adding a "#include <stddef.h>" to linker.cpp fixes the issue for me.とのことなので、
$ vi external/mesa3d/src/glsl/linker.cpp
#include "main/shaderobj.h" #include <stddef.h> /** * Visitor that determines whether or not a variable is ever written. */ class find_assignment_visitor : public ir_hierarchical_visitor {したら、一応最後まで走りましたよっと。