This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent"> | |
| <RelativeLayout | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent"> | |
| <View | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <LinearLayout android:id="@+id/progressContainer" | |
| android:orientation="vertical" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:visibility="gone" | |
| android:gravity="center" | |
| tools:visibility="visible"> | |
| <ProgressBar style="?android:attr/progressBarStyleLargeInverse" | |
| android:layout_width="wrap_content" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.bim.android.ui.custom; | |
| import android.app.ListFragment; | |
| import android.content.Context; | |
| import android.os.Bundle; | |
| import android.support.v4.view.ViewCompat; | |
| import android.support.v4.widget.SwipeRefreshLayout; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.ViewGroup; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | in the project build.gradle | |
| def replaceFileNameWithVersionNameAndVersionCode(variant, defaultConfig, extension) { | |
| def file = variant.outputFile | |
| def versionString = "-" + defaultConfig.versionName + "_" + defaultConfig.versionCode; | |
| variant.outputFile = new File(file.parent, file.name.replace(extension, versionString + extension)) | |
| } | |
| android.libraryVariants.all { variant -> | |
| if (variant.name == android.buildTypes.release.name) { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | test | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.jeffinmadison.loader; | |
| import android.content.AsyncTaskLoader; | |
| import android.content.Context; | |
| import android.util.Log; | |
| /** | |
| * Created by Jeff on 11/11/13. | |
| * Copyright JeffInMadison.com 2013 | |
| */ |