Prerequisites
Configure your project to work with AATKit
Set the project's Target Compatibility to 1.8
Enable core library desugaring
Use AndroidX
Enable cleartext traffic
<?xml version="1.0" encoding="utf-8"?>
<manifest ...>
...
<application
...
android:usesCleartextTraffic="true"
...>
...
</application>
</manifest>Define your application name in AndroidManifest.xml
Last updated