Skip to content

Commit

Permalink
upgraded
Browse files Browse the repository at this point in the history
  • Loading branch information
yunusemreyakisan committed May 8, 2023
1 parent f70fc81 commit 43402c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 3 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ dependencies {
implementation 'com.google.firebase:firebase-auth:21.3.0'
implementation 'com.google.firebase:firebase-database:20.2.0'
implementation 'com.google.firebase:firebase-storage:20.1.0'
implementation 'com.google.firebase:firebase-crashlytics:18.3.6'
implementation 'com.google.firebase:firebase-analytics:21.2.2'
implementation 'com.google.android.gms:play-services-mlkit-text-recognition:19.0.0'
implementation 'com.google.firebase:firebase-messaging:23.1.2'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
implementation 'com.google.firebase:firebase-crashlytics:18.3.6'
implementation 'com.google.firebase:firebase-analytics:21.2.2'
implementation 'com.google.firebase:firebase-perf:20.3.1'
implementation 'com.google.firebase:firebase-ml-vision:24.1.0'
testImplementation 'junit:junit:4.13.2'
Expand All @@ -82,6 +82,7 @@ dependencies {
implementation 'com.intuit.ssp:ssp-android:1.1.0'
implementation 'com.intuit.sdp:sdp-android:1.1.0'

//Glide for Images
implementation 'com.github.bumptech.glide:glide:4.15.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.15.0'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,14 @@ public void onBindViewHolder(@NonNull RecyclerView.ViewHolder holder, int positi
}


//click listener (TODO: GPT mesajına tıkladıgında kopyalanacak.)
//click listener
((VH) holder).kopyala.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
getCopiedObject(v.getContext(), ((VH) holder).leftTextView.getText().toString());
}
});

//TODO: Click listener için interface oluştur, viewmodel üzerinden kopyalanan içeriği notlara kaydet.

}

@Override
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_note_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@
android:layout_height="wrap_content"
android:layout_gravity="end|center_vertical"
android:background="@android:color/transparent"
android:padding="8dp"
android:layout_marginHorizontal="10dp"
android:padding="@dimen/_8sdp"
android:layout_marginHorizontal="@dimen/_10sdp"
android:src="@drawable/ic_extra"
android:contentDescription="@string/btn_toolbar_share"
app:tint="@color/md_theme_light_primary" />
Expand Down

0 comments on commit 43402c7

Please sign in to comment.