Skip to content

Releases: xiong-it/AutoInputAuthCode

v1.0.1

07 Jul 02:31
Compare
Choose a tag to compare

添加一个共有api防止未读取到验证码导致内存泄露

@Override
protected void onDestroy() {
    super.onDestroy();
    // 防止未读取到验证码导致内存泄露,手动回收内存
    AuthCode.getInstance().onDestroy();
}

1.0.0-stable

07 May 15:23
Compare
Choose a tag to compare

如果你添加gradle无法通过编译:compile 'tech.michaelx.authcode:authcode:1.0.0',那便是1.0.0还在jcenter上架审核当中,可在项目根目录的build.gradle添加自定义maven地址

allprojects {
    repositories {
        jcenter()
        maven { url "https://dl.bintray.com/xiong-it/AndroidRepo"} // 添加这行即可
    }
}