re-natal icon indicating copy to clipboard operation
re-natal copied to clipboard

how to change android target version

Open LoveLiveSun opened this issue 6 years ago • 1 comments

when i using the command line re-natal in the win7 cmd.exe,the initial project android target always the 23,how should i change this and from where

LoveLiveSun avatar Jan 06 '19 09:01 LoveLiveSun

when i using the command line re-natal in the win7 cmd.exe,the initial project android target always the 23,how should i change this and from where

Take a look at android/build.gradle file - it should contains something like this:

buildscript {
    ext {
        buildToolsVersion = "27.0.3"
        minSdkVersion = 16
        compileSdkVersion = 27
        targetSdkVersion = 26
        supportLibVersion = "27.1.1"
    }

ne1ro avatar Jan 31 '19 14:01 ne1ro