# Box-AndroidLibrary
**Repository Path**: changleibox/Box-AndroidLibrary
## Basic Information
- **Project Name**: Box-AndroidLibrary
- **Description**: Android Frame
- **Primary Language**: Android
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2017-04-04
- **Last Updated**: 2024-11-23
## Categories & Tags
**Categories**: android-modules
**Tags**: None
## README
# Box-AndroidLibrary
Sample
======
Sample & .aar file
Note
====
depends on Google's appcompat-v7 for this for 25.3.0 version
Using
======
First of all you have to upload animation submodule with `git submodule update --init` command
Or you can add gradle dependency with command :
#### Gradle
```groovy
dependencies {
compile 'me.box.library:boxlibrary:1.0.1'
}
```
To add gradle dependency you need to open build.gradle (in your app folder,not in a project folder) then copy and add the dependencies there in the dependencies block;
#### Maven
```xml
me.box.library
boxlibrary
1.0.1
pom
```
#### lvy
```xml
```
Example
========
#### Activity
```java
public abstract class BaseActivity extends IBaseActivity {
@Override
public void onUserCreateViews(Bundle savedInstanceState) {
}
public TestApplication getIApplication() {
return (TestApplication) getApplication();
}
}
```
#### Fragment
```java
public abstract class BaseFragment extends IBaseFragment {
public TestApplication getIApplication() {
return (TestApplication) getApplication();
}
}
```
## License
Copyright © 2017 CHANGLEI. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.