我为我的项目创建了一个新模块,用于添加一些额外的功能。在该模块中,我在模块的Gradle文件,
中添加了Jsoup依赖项,并实现此代码来解析一个简单的HTML代码。
) values ( sauce, sauce, 2018-05-26 11:42:17, 2018-05-26 11:42:17))
在运行应用程序时,我收到此错误跟踪应用程序崩溃。
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTagsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tags', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('slug')->unique();
$table->timestamps();
});
Schema::create('taggables', function (Blueprint $table) {
$table->increments('id');
$table->integer('tag_id')->unsigned();
$table->integer('taggable_id')->unsigned();
$table->string('taggable_type');
$table->foreign('tag_id')->references('id')->on('tags')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('taggables');
Schema::dropIfExists('tags');
}
}
答案 0 :(得分:1)
首先,确保将其添加到清单中,然后清理项目。
如果您使用的是Eclipse ,问题仍然存在,请按照以下答案操作:https://stackoverflow.com/a/22959847/8065149
如果您使用的是Android Studio ,请尝试禁用即时运行:转到文件 - &gt;设置 - &gt;构建,执行,部署 - &gt;即时运行 - &gt;取消选中即时运行的复选框。运行你的应用程序一次,这个apk文件shoudld正常工作。
如果那个小小的改变不起作用,那么试试增量构建系统中可能出错的地方。其中一个应该有所帮助: