1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 package software.amazon.awssdk.crttest
7 
8 import androidx.appcompat.app.AppCompatActivity
9 
10 /*
11  * The "TEST APP" is merely a shell that contains the aws-crt-java android library and is used by the
12  * instrumentation test package to test against. There is nothing here. The assets folder will contain the
13  * files generated in GitHub CI for testing and the res folder contains the bare essentials for an android app.
14  */
15 
16 class MainActivity : AppCompatActivity() {
17 }
18