Skip to content

Latest commit

 

History

History

app

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Admitad SDK test project

There're you can find some examples of sdk usage.

You can press "ADD MANY TO QUEUE" button to send 100 different logs to make stress tests.

MainActivity is able to handle intent with admitad scheme and pass it to the SDK:

 Intent intent = new Intent();
 intent.setAction(Intent.ACTION_VIEW);		          
 Uri uri = Uri.parse("admitad://?uid=TextAndroidUidOutside");
 intent.setData(uri);
 startActivity(intent);