Skip to content

Commit

Permalink
develop to release-0.11.x (#504)
Browse files Browse the repository at this point in the history
* Removed snapshot local jar and added mvn url (#500)

* commented forgot passwd story

Signed-off-by: Sachin S P <sachin.sp@cyberpwn.com>

---------

Signed-off-by: Sachin S P <sachin.sp@cyberpwn.com>
Co-authored-by: G S Prakash Naidu <146939767+GSPrakash2662@users.noreply.github.com>
Co-authored-by: Sachin S P <sachin.sp@cyberpwn.com>
Co-authored-by: Hitesh Jain <jainhitesh9998@gmail.com>
  • Loading branch information
4 people authored Jan 23, 2025
1 parent d805124 commit b99abfb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
3 changes: 2 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
}

Expand All @@ -39,7 +40,7 @@ ext {
clientmanagerLibVersionCode = 1
clientmanagerLibVersionName = "\"1.0.0\""

serverBaseURL = "\"https://api-internal.qa-plan.mosip.net\""
serverBaseURL = "\"https://api-internal.qa-platform1.mosip.net\""
serverHealthCheckPath = "\"/v1/syncdata/actuator/health\""
serverActuatorInfoPath = "\"/v1/syncdata/actuator/info\""
debugPassword = "\"APTyKejHxACQyKBSRciR\""
Expand Down
4 changes: 3 additions & 1 deletion android/clientmanager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,10 @@ dependencies {
implementation project(':keymanager')

api project(':matchsdk')
implementation files('libs/kernel-biometrics-api-1.2.1-SNAPSHOT.jar')
implementation 'com.github.kenglxn.QRGen:android:3.0.1'
implementation("io.mosip.kernel:kernel-biometrics-api:1.2.0.3-SNAPSHOT"){
transitive = false
}
}

sonarqube {
Expand Down
Binary file not shown.
24 changes: 12 additions & 12 deletions lib/ui/widgets/password_component.dart
Original file line number Diff line number Diff line change
Expand Up @@ -151,18 +151,18 @@ class PasswordComponent extends StatelessWidget {
SizedBox(
height: 30.h,
),
InkWell(
onTap: onTapForgotPassword,
child: Container(
alignment: Alignment.center,
child: Text(
AppLocalizations.of(context)!.forgot_password,
style: isMobile
&& !isMobileSize ? AppTextStyle.tabletPortraitForgotPasswordText
: AppTextStyle.mobileForgotPasswordText,
),
),
),
// InkWell(
// onTap: onTapForgotPassword,
// child: Container(
// alignment: Alignment.center,
// child: Text(
// AppLocalizations.of(context)!.forgot_password,
// style: isMobile
// && !isMobileSize ? AppTextStyle.tabletPortraitForgotPasswordText
// : AppTextStyle.mobileForgotPasswordText,
// ),
// ),
// ),
SizedBox(
height: 20.h,
),
Expand Down

0 comments on commit b99abfb

Please sign in to comment.