Skip to content

Commit d0416ff

Browse files
committed
Feature update
-Modified edit name /delete folder -Fixed crash bug causing app crashes when clicking the website button in the help section. -Updated libraries
1 parent f6ebe1f commit d0416ff

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

app/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ android {
88

99
defaultConfig {
1010
applicationId "com.btn.pronotes"
11-
minSdk 21
11+
minSdk 23
1212
targetSdk 34
13-
versionCode 11
14-
versionName "11.0"
13+
versionCode 12
14+
versionName "12.0"
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
@@ -39,17 +39,17 @@ android {
3939

4040
dependencies {
4141
implementation 'com.github.dhaval2404:ColorPicker:2.3'
42-
implementation 'androidx.appcompat:appcompat:1.6.1'
43-
implementation 'com.google.android.material:material:1.11.0'
42+
implementation 'androidx.appcompat:appcompat:1.7.0'
43+
implementation 'com.google.android.material:material:1.12.0'
4444
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4545
//Androidx room
4646
implementation "androidx.room:room-runtime:2.6.1"
4747
implementation 'androidx.navigation:navigation-fragment:2.7.7'
4848
implementation 'androidx.navigation:navigation-ui:2.7.7'
4949
annotationProcessor "androidx.room:room-compiler:2.6.1"
5050
testImplementation 'junit:junit:4.13.2'
51-
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
52-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
51+
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
52+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
5353
implementation 'com.intuit.sdp:sdp-android:1.1.0'
5454
implementation 'com.intuit.ssp:ssp-android:1.1.0'
5555

@@ -74,7 +74,7 @@ dependencies {
7474
implementation 'com.guolindev.permissionx:permissionx:1.7.1'
7575

7676
//firebase
77-
implementation platform('com.google.firebase:firebase-bom:32.0.0')
77+
implementation platform('com.google.firebase:firebase-bom:33.1.1')
7878
implementation 'com.google.firebase:firebase-analytics'
7979
implementation 'com.google.firebase:firebase-firestore'
8080
implementation 'com.google.firebase:firebase-storage'

app/src/main/java/com/btn/pronotes/OpenHelp.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,16 @@ protected void onCreate(Bundle savedInstanceState) {
1717
setContentView(R.layout.help);
1818
}
1919

20-
@Override
20+
/* @Override
2121
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
2222
if (item.getItemId() == R.id.websitebutton) {
2323
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.brett-techrepair.com")));
2424
}
2525
return super.onOptionsItemSelected(item);
26+
}*/
2627

28+
public void btnwebsite(View view) {
29+
// Handle button click here
30+
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.brett-techrepair.com")));
2731
}
2832
}

0 commit comments

Comments
 (0)