Reputation: 1806
My Google Glass just automatically installed the latest update (XE16). After rebooting the device it turned out that all my previous deployments are removed from the device and I am not able to install my previous projects anymore.
My targetSdkVersion is set to '19' so therefore I should be able to support the latest firmware (kitkat).
What do I need to do to re-enable the deployment of builds via Eclipse?
I tried updating all of the Android tools via Software manager and confirmed that all libraries from API level 19 are installed. Odd thing is that the console gives the exact same information before the update (\MyProjectFolder\MyProject.apk installed on device, Done!)
Upvotes: 3
Views: 195
Reputation: 1806
Found the issue, we now need to add another permission to the manifest to enable deployment.
In Manifest add
<uses-permission android:name="com.google.android.glass.permission.DEVELOPMENT"/>
Upvotes: 4