//*****************************
//*        FORT SDK V1.6      *
//*****************************

TO GET A SUCCESSFUL BUILD, please make sure to upgrade the build tool to [29.0.2].

[Please ignore the following notes if its your first time to integrate the FORT SDK to your native application]

>> What's new?
1. Support Android Q API 29.
2. Migrating to androidX (https://developer.android.com/jetpack/androidx/migrate) to replace the support library 
3. Bugs fixing
4. The progaurd rules file has been updated accordingly. Please check progaurd.txt file.


>> Please make sure to follow the below steps for successful build:
1. Update the buildToolsVersion to 29.0.2
2. compileSdkVersion to 29
3. Upgrade the targetSdkVersion to 29
4. Add the below lines to your project [grade.properties]:
   android.enableJetifier=true
   android.useAndroidX=true
5. In build.gradle, make sure to upgrade the design support to version 29 and replace the support libraries to androidX as below:
   
   dependencies {
     implementation 'androidx.appcompat:appcompat:1.1.0'
     api 'com.android.support:design:29+'
  }



>> If you have a customized UI, please makes sure to change the type of [TextInputLayout from android.support.design.widget.TextInputLayout to com.google.android.material.textfield.TextInputLayout in activity_cc_payment.xml for both the default layout and RTL (Arabic) layout.

 Hint: The updated XML files are attached under res folder.