3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Android で ビルド失敗するとき

Posted at

ライセンスへの同意が完了していない場合の対処

ビルド時にライセンスへの同意が完了していないと怒られた場合に、CLI上で解決する方法。

問題

下記コマンドを実行した際に失敗した。

react-native run-android
```

### エラー内容
```
FAILURE: Build failed with an exception.                                                            
                                                                                                    
* What went wrong:                                                                                  
A problem occurred configuring project ':app'.                                                      
> Could not resolve all dependencies for configuration ':app:_debugApk'.                            
   > A problem occurred configuring project 'XXXXX'.                            
      > You have not accepted the license agreements of the following SDK components:               
        [Android SDK Build-Tools 25.0.2].                                                           
        Before building your project, you need to accept the license agreements and complete the installation of the missing components using the Android Studio SDK Manager.                           
        Alternatively, to learn how to transfer the license agreements from one workstation to another, go to http://d.android.com/r/studio-ui/export-licenses.html
```

## 対応

下記コマンドで、OK

```
sdkmanager --license
```

あとは、表示されるメッセージに従う

### help の内容

```
sdkmanager --licenses [<common args>]

With --licenses, show and offer the option to accept licenses for all
     available packages that have not already been accepted.
```
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?