Skip to content

Instantly share code, notes, and snippets.

When building an adnroid app, you might stumble upon this error:
`Failed to finalize session : INSTALL_FAILED_UPDATE_INCOMPATIBLE...`. Here's how to fix it:
That's because the app you're trying to test was already installed on the device and the signatures are different now, so it's complaining. The full error will look like something like this:
`Failed to finalize session : INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.example signatures do not match the previously installed version; ignoring!`
You can see that the package ID is `com.example`, well, simply run this command:
@asalem1
asalem1 / react-coverflow-2.example.js
Created March 5, 2018 01:23
React Coverflow Example2
import React from 'react';
import ReactDOM from 'react-dom';
import Coverflow from 'react-coverflow';
import { StyleRoot } from 'radium';
ReactDOM.render(
<StyleRoot>
<Coverflow
displayQuantityOfSide={2}
navigation
@asalem1
asalem1 / react-coverflow-3.example.js
Last active March 14, 2021 06:02
React Coverflow Example 3
import React from 'react';
import ReactDOM from 'react-dom';
import Coverflow from 'react-coverflow';
class Container extends Component {
constructor(props) {
super(props);
this.state = {
active: 0
@asalem1
asalem1 / react-coverflow.example.js
Created March 3, 2018 17:55
React Coverflow Example
var React = require('react');
var ReactDOM = require('react-dom');
var Coverflow = require('react-coverflow');
var fn = function () {
/* do you want */
}
ReactDOM.render(
<Coverflow