如何在Android Studio中为演示和完整风味代码创建正确的目录?

时间:2015-05-20 00:27:15

标签: android android-studio gradle

我需要为我的应用添加演示和完整风味。

https://developer.android.com/tools/building/configuring-gradle.html告诉我:

“1。在”项目“面板上,展开”BuildSystemExample“,然后展开”应用程序“目录。    2.右键单击app下的src目录,然后选择New>目录“。

我使用的是Android Studio 1.2.1.1,因此在创建项目时,它不会在项目中显示src目录。

我该如何处理?

1 个答案:

答案 0 :(得分:0)

也许你可以使用"项目结构"用于为应用程序创建flavor的对话框。我在示例项目中添加了完整版和家庭版,如下图所示。

您可以获得"项目结构"对话框通过菜单"文件" - > "项目结构"。

enter image description here

这是app模块的build.gradle文本文件。

class Instrument extends Model {

    protected $primaryKey = 'in_id';
    public function station()
    {
        return $this->belongsTo('App\Station', 'in_stid');
    }
}

希望它有所帮助。