提问人:AdamPI 提问时间:11/19/2022 更新时间:11/19/2022 访问量:233
我希望我的 android 应用程序在没有意图的情况下自动发送电子邮件 (Kotlin!
I want my android app to send an email automatically without an intent (Kotlin!)
问:
您好,我想在不使用 intent、startActivity 等的情况下从我的 android 应用程序发送电子邮件。有什么办法可以做到吗?我几乎找不到 kotlin 和他们使用 intent 的任何地方的任何代码。我只找到了这个:https://github.com/1902shubh/SendMail。如果我尝试以下列方式实现此解决方案:
根级 Gradle
buildscript {
ext {
compose_version = '1.3.0'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.google.gms:google-services:4.3.14'
}
}
plugins {
id 'com.android.application' version '7.1.3' apply false
id 'com.android.library' version '7.1.3' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
格拉德尔
dependencies {
implementation 'com.github.1902shubh:SendMail:1.0.0'
...
}
我的 Kotlin 代码
val mail = SendMail(
"[email protected]", "yourEmailsPass",
"otherUser'[email protected]",
"Title",
"Yes, it's working well\nI will use it always.:)"
)
mail.execute()
它说未解析的引用:SendMail,并且不想实现任何。谁能告诉我有什么问题?
答: 暂无答案
评论
import
SendMail