Erro no AUTOINCREMENT , se eu tirar ele funciona mas não incrementa!
Será que a versão do SQLite é diferente?
Alguma ajuda?
public void onCreate(SQLiteDatabase db) {
        String sql ="CREATE TABLE " + TABELA +
         " (id INTEGER PRYMARY KEY AUTOINCREMENT , "
            + " nome TEXT UNIQUE NOT NULL, "
            + " telefone TEXT, "
            + " endereco TEXT, "
            + " site TEXT, "
            + " nota REAL, "
            + "caminhoFoto TEXT "
            + ");";
        db.execSQL(sql);
    }02-02 20:24:35.240: E/SQLiteLog(850): (1) near "AUTOINCREMENT": syntax error
02-02 20:24:35.300: E/AndroidRuntime(850): Process: br.com.caelum.cadastro, PID: 850
02-02 20:24:35.300: E/AndroidRuntime(850): java.lang.RuntimeException: Unable to start activity ComponentInfo{br.com.caelum.cadastro/br.com.caelum.cadastro.ListaAlunosActivity}: android.database.sqlite.SQLiteException: near "AUTOINCREMENT": syntax error (code 1): , while compiling: CREATE TABLE Alunos (id INTEGER PRYMARY KEY AUTOINCREMENT ,  nome TEXT UNIQUE NOT NULL,  telefone TEXT,  endereco TEXT,  site TEXT,  nota REAL, caminhoFoto TEXT ); 
            