sweet alert dialog在android studio応用問題説明詳細
これを見てsweet-alert-dialogはとても親切です。先端開発のために本人が使っているヒントはこのjsプラグインです。java牛人はすごいです。直接にjavaパッケージプラグインを作ります。Good!
以下の記録はどのように工事に引用され、使用されますか?
sweet-alert-dialogプラグインは直接githubにダウンロードできます。
住所:https://github.com/pedant/sweet-alert-dialog
またはリリースされたページに直接ダウンロードします。
https://github.com/pedant/sweet-alert-dialog/releases
私がダウンロードしたのは、sweet-alert-dialog-1.1バージョンzipパッケージです。
sweet-alert-dialog-1.1をダウンロードして解凍して、あなたのapプロジェクトの中でFile->New->Import Moduleを開けて、先ほど解凍したフォルダに選択します。
エラー:
Error:Dependency Myalert:sweetalertdialog:unspecified on project approct reves to an APK archive which is not supported as a complation dependency.File:D:Android Studictes Project/TEST Mybureogett\
まずBuildでsweet-alert-dialogプロジェクトを行ってもいいです。
また、あなたのプロジェクトGraadle Scripptsディレクトリの下のbulid.gradle(Module:app)の下で
Buildアプリに新しいエラーメッセージが表示されます。
Error:Execution failed for task':ap:processDebugManifest'
Manifest merger failed:Attributeapplication@iconvalue=(@mipmap/ic_from Android Manifest.xml:7:9-43
is also present at[comp.pnikosis:materialish-progress:1.0]Android Manifest.xml:13:9-45 value=(@drawable/ic_launcher)
Suggaestion:add‘tools:replace=’android:icon’to element at Android Manifest.xml:5:18 to override.
解決方法:
Android Manifest.xmlを修正:
manifistにxmlnsを追加します。tools="http://schemas.android.com/tools」
appicationにtools:replace="android:icon,android:theme,android:allowBackup,android:label,android:supportsRtl"を追加します。
アプリで使うすべてのandroid:上のtools:replace=を追加してカンマ区切ります。
以下のとおりです
以上は小编が绍介したsweet alert dialogです。android studioでの応用问题を详しく说明しています。皆さんに助けてほしいです。もし何か疑问があれば、メッセージをください。小编はすぐに皆さんに返事します。ここでも私たちのサイトを応援してくれてありがとうございます。
以下の記録はどのように工事に引用され、使用されますか?
sweet-alert-dialogプラグインは直接githubにダウンロードできます。
住所:https://github.com/pedant/sweet-alert-dialog
またはリリースされたページに直接ダウンロードします。
https://github.com/pedant/sweet-alert-dialog/releases
私がダウンロードしたのは、sweet-alert-dialog-1.1バージョンzipパッケージです。
sweet-alert-dialog-1.1をダウンロードして解凍して、あなたのapプロジェクトの中でFile->New->Import Moduleを開けて、先ほど解凍したフォルダに選択します。
エラー:
Error:Dependency Myalert:sweetalertdialog:unspecified on project approct reves to an APK archive which is not supported as a complation dependency.File:D:Android Studictes Project/TEST Mybureogett\
まずBuildでsweet-alert-dialogプロジェクトを行ってもいいです。
また、あなたのプロジェクトGraadle Scripptsディレクトリの下のbulid.gradle(Module:app)の下で
dependencies {
compile fileTree(include: [‘*.jar'], dir: ‘libs')
testCompile ‘junit:junit:4.12'
compile ‘com.android.support:appcompat-v7:24.1.1'
compile ‘cn.pedant.sweetalert:library:1.3'
}
導入:comple‘cn.pedant.sweetalert:library:1.3’Buildアプリに新しいエラーメッセージが表示されます。
Error:Execution failed for task':ap:processDebugManifest'
Manifest merger failed:Attributeapplication@iconvalue=(@mipmap/ic_from Android Manifest.xml:7:9-43
is also present at[comp.pnikosis:materialish-progress:1.0]Android Manifest.xml:13:9-45 value=(@drawable/ic_launcher)
Suggaestion:add‘tools:replace=’android:icon’to element at Android Manifest.xml:5:18 to override.
解決方法:
Android Manifest.xmlを修正:
manifistにxmlnsを追加します。tools="http://schemas.android.com/tools」
appicationにtools:replace="android:icon,android:theme,android:allowBackup,android:label,android:supportsRtl"を追加します。
アプリで使うすべてのandroid:上のtools:replace=を追加してカンマ区切ります。
以下のとおりです
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="cn.cgrs.myalert">
<application
tools:replace="android:allowBackup,android:icon,android:label,android:supportsRtl,android:theme"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
これでsweet-alert-dialogの設定が完了しました。自由に使えるようになりました。以上は小编が绍介したsweet alert dialogです。android studioでの応用问题を详しく说明しています。皆さんに助けてほしいです。もし何か疑问があれば、メッセージをください。小编はすぐに皆さんに返事します。ここでも私たちのサイトを応援してくれてありがとうございます。