Merge branch 'fix/forgotPassword' into 'master'
chore: update and set minSdk to 24, and dispose emai controller in forgot password screen See merge request profile-image/kedaireka/polinema-adapative-learning/mobile-adaptive-learning!30
This commit is contained in:
commit
21e90e1b16
|
|
@ -14,7 +14,7 @@ android {
|
|||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
|
@ -24,7 +24,7 @@ android {
|
|||
applicationId = "com.example.english_learning"
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||
minSdk = flutter.minSdkVersion
|
||||
minSdk = 24
|
||||
targetSdk = flutter.targetSdkVersion
|
||||
versionCode = flutter.versionCode
|
||||
versionName = flutter.versionName
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
const String baseUrl = 'https://z30xrgl5-3001.asse.devtunnels.ms/';
|
||||
const String baseUrl = 'http://54.173.167.62/';
|
||||
|
||||
const String mediaUrl = 'https://z30xrgl5-3001.asse.devtunnels.ms/api/uploads/';
|
||||
const String mediaUrl = 'http://54.173.167.62/api/uploads/';
|
||||
|
|
|
|||
|
|
@ -169,4 +169,10 @@ class _ForgotPasswordScreenState extends State<ForgotPasswordScreen> {
|
|||
),
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_emailController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user