Skip to content

Commit

Permalink
sawo nakhre dikhara hai
Browse files Browse the repository at this point in the history
  • Loading branch information
itsnitish22 committed Jun 23, 2022
1 parent 948af3e commit 8ca3c5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {

defaultConfig {
applicationId "com.example.feedbackprime"
minSdk 21
minSdk 24
targetSdk 31
versionCode 1
versionName "1.0"
Expand Down Expand Up @@ -52,7 +52,7 @@ dependencies {
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'

//SAWO
implementation 'com.github.sawolabs:Android-SDK:0.1.8'
implementation 'com.github.sawolabs:Android-SDK:0.3.0'

//volley
implementation("com.android.volley:volley:1.2.1")
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/java/com/example/feedbackprime/SplashScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import android.os.Bundle
import android.os.Handler
import android.view.WindowManager
import androidx.appcompat.app.AppCompatActivity
import com.example.feedbackprime.callprocess.ProcessCallActivity

@Suppress("DEPRECATION")
class SplashScreen : AppCompatActivity() {
Expand All @@ -22,7 +23,7 @@ class SplashScreen : AppCompatActivity() {
// we used the postDelayed(Runnable, time) method
// to send a message with a delayed time.
Handler().postDelayed({
val intent = Intent(this, MainActivity::class.java)
val intent = Intent(this, ProcessCallActivity::class.java)
startActivity(intent)
finish()
}, 3000) // 3000 is the delayed time in milliseconds.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class SawoAuthLanding : Fragment() {
"68348a0e-da16-4e57-8f03-4daceb1bce0c\n", // your api key
"615de8b2956fa888e2ab633duDIlH0mAzkPfNy0cpddvHt63" // your api key secret
).login(
"email", // can be one of 'email' or 'phone_number_sms'
"phone_number_sms", // can be one of 'email' or 'phone_number_sms'
ProcessCallActivity::class.java.name // Callback class name
)
}
Expand Down

0 comments on commit 8ca3c5e

Please sign in to comment.