com-dot-app-sancharsaathi-1-5-0.apk

Download file
    package net.sqlcipher.database;

public interface SQLiteTransactionListener {
    void onBegin();

    void onCommit();

    void onRollback();
}
    
Download file