Now days paid extensions are being sold and distributed illegally in many Whatsapp
and Telegram
groups. This has to be stopped. So finally I just developed a library that will help @ExtensionDevelopers to prevent the piracy
How To Use ?
Step 1 :
Step 2 :
import the library in your project.import in.techybro.antipiracy.AntiPiracy;
Step 3 :
Create a object of Antipiracy class and pass the application context in it.
AntiPiracy antipiracy = new AntiPiracy(context);
Step 4 :
Call .validate()
method to start authentication. It takes a url String as arguement. See this example url
antipiracy.validate("https://www.example.com/users.txt");
Step 5 :
Implement listeners to it. String s
you can find what went Wrong
antipiracy.setOnResultListener(new AntiPiracy.OnResultListener() {
@Override
public void OnAuthFailed(String s) {
}
@Override
public void OnAuthSuccessFul() {
}
});
Bug Found ?
Please let me now know if you find any bug in it.
I know its not fully secure. But I think its the most secured as of now.