Android Studio不断构建旧版本

时间:2018-01-14 12:43:15

标签: android android-studio build.gradle

自从我将应用更新到Play商店以来已经很久了,所以我可能会跳过一些简单但我更新了我的代码和构建的gradle

    versionCode 15 //increased from v 14
    versionName "1.34" // increased from 1.33

但无论何时建立,它都会在2017年9月27日为我建立一个版本(可能是我最后一次更新应用程序)

Build 27/09/17

我已经尝试过清理和重建,但我还是编译了旧版本。

任何可能的解决方案?

1 个答案:

答案 0 :(得分:0)

我花了两天多的时间尝试了各种解决方案,但不幸的是,它们都没有奏效。唯一对我有用的解决方案是删除 $seasons = array_filter([ $this->a_spring ? 'spring' : null, $this->a_summer ? 'summer' : null, $this->a_fall ? 'fall' : null $this->a_winter ? 'winter' : null ]); $activities = Activity::select('id','activity_name','activity_name_web','year','season', 'sex', 'active_on_web', 'begin_active_on_web', 'end_active_on_web', 'begin_age', 'end_age', 'begin_date','end_date') ->when(count($seasons) > 0, function($query) use ($seasons) { $query->whereIn(DB::raw('LOWER(season)'), $seasons); })->when(count($seasons) == 0, function ($query) { $query->where('id', > 0); // Not sure you need this part }) ->orderBy('begin_date','desc')->orderBy('activity_name','asc') ->paginate(25); 文件夹并使用 Android Studio 重新构建应用程序。